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
4
fetchPypi,
5
5
pytestCheckHook,
6
6
pythonOlder,
7
7
-
flit-core,
8
8
-
requests,
7
7
+
hatchling,
8
8
+
httpx,
9
9
tomli,
10
10
}:
11
11
···
14
14
version = "0.11.0";
15
15
pyproject = true;
16
16
17
17
-
disabled = pythonOlder "3.8";
17
17
+
disabled = pythonOlder "3.9";
18
18
19
19
src = fetchPypi {
20
20
inherit pname version;
21
21
hash = "sha256-TDvTNh+5cxgBoy9nuXItHOdtfbsP+3F16egZjUBSpak=";
22
22
};
23
23
24
24
-
nativeBuildInputs = [ flit-core ];
24
24
+
build-system = [ hatchling ];
25
25
26
26
-
propagatedBuildInputs = [
27
27
-
requests
26
26
+
dependencies = [
27
27
+
httpx
28
28
tomli
29
29
];
30
30