tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.wn: fix build
Chuang Zhu
11 months ago
a161ff01
a79cfe0e
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
wn
default.nix
+6
-6
pkgs/development/python-modules/wn/default.nix
···
4
fetchPypi,
5
pytestCheckHook,
6
pythonOlder,
7
-
flit-core,
8
-
requests,
9
tomli,
10
}:
11
···
14
version = "0.11.0";
15
pyproject = true;
16
17
-
disabled = pythonOlder "3.8";
18
19
src = fetchPypi {
20
inherit pname version;
21
hash = "sha256-TDvTNh+5cxgBoy9nuXItHOdtfbsP+3F16egZjUBSpak=";
22
};
23
24
-
nativeBuildInputs = [ flit-core ];
25
26
-
propagatedBuildInputs = [
27
-
requests
28
tomli
29
];
30
···
4
fetchPypi,
5
pytestCheckHook,
6
pythonOlder,
7
+
hatchling,
8
+
httpx,
9
tomli,
10
}:
11
···
14
version = "0.11.0";
15
pyproject = true;
16
17
+
disabled = pythonOlder "3.9";
18
19
src = fetchPypi {
20
inherit pname version;
21
hash = "sha256-TDvTNh+5cxgBoy9nuXItHOdtfbsP+3F16egZjUBSpak=";
22
};
23
24
+
build-system = [ hatchling ];
25
26
+
dependencies = [
27
+
httpx
28
tomli
29
];
30