We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6591a62 + a161ff0 commit 2225135Copy full SHA for 2225135
pkgs/development/python-modules/wn/default.nix
@@ -4,8 +4,8 @@
4
fetchPypi,
5
pytestCheckHook,
6
pythonOlder,
7
- flit-core,
8
- requests,
+ hatchling,
+ httpx,
9
tomli,
10
}:
11
@@ -14,17 +14,17 @@ buildPythonPackage rec {
14
version = "0.11.0";
15
pyproject = true;
16
17
- disabled = pythonOlder "3.8";
+ disabled = pythonOlder "3.9";
18
19
src = fetchPypi {
20
inherit pname version;
21
hash = "sha256-TDvTNh+5cxgBoy9nuXItHOdtfbsP+3F16egZjUBSpak=";
22
};
23
24
- nativeBuildInputs = [ flit-core ];
+ build-system = [ hatchling ];
25
26
- propagatedBuildInputs = [
27
- requests
+ dependencies = [
+ httpx
28
tomli
29
];
30
0 commit comments