blob: ca4523d99cf10684fd971e5fc4f749f394824b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{
stdenv,
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
cython,
setuptools,
# native dependencies
libxml2,
libxslt,
zlib,
xcodebuild,
}:
buildPythonPackage rec {
pname = "lxml";
version = "6.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "lxml";
repo = "lxml";
tag = "lxml-${version}";
hash = "sha256-Ri5SzfQJFghRcMAKHS5QKD365OZlio895fSlumq83vs=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'Cython>=3.1.4' 'Cython'
'';
build-system = [
cython
setuptools
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ xcodebuild ];
# required for build time dependency check
nativeBuildInputs = [
libxml2.dev
libxslt.dev
];
buildInputs = [
libxml2
libxslt
zlib
];
env = lib.optionalAttrs stdenv.cc.isClang {
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-function-pointer-types";
};
# tests are meant to be ran "in-place" in the same directory as src
doCheck = false;
pythonImportsCheck = [
"lxml"
"lxml.etree"
];
meta = {
changelog = "https://github.com/lxml/lxml/blob/lxml-${version}/CHANGES.txt";
description = "Pythonic binding for the libxml2 and libxslt libraries";
homepage = "https://lxml.de";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|