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.
1 parent 80a13a6 commit 91a3305Copy full SHA for 91a3305
pkgs/development/python-modules/ixia/default.nix
@@ -2,22 +2,25 @@
2
lib,
3
buildPythonPackage,
4
fetchFromGitHub,
5
- poetry-core,
+ hatchling,
6
+ pytestCheckHook,
7
}:
8
9
buildPythonPackage rec {
10
pname = "ixia";
- version = "1.3.2";
11
+ version = "2.0.0";
12
pyproject = true;
13
14
src = fetchFromGitHub {
15
owner = "trag1c";
16
repo = "ixia";
17
tag = version;
- hash = "sha256-lsov5AIT5uRf9nmS8ZsFmInKUFAxUATTbpfhV1fabhA=";
18
+ hash = "sha256-8STtLL63V+XnDqDNZOx7X9mkjUu176SSyQOL55LXFz0=";
19
};
20
- build-system = [ poetry-core ];
21
+ build-system = [ hatchling ];
22
+
23
+ nativeCheckInputs = [ pytestCheckHook ];
24
pythonImportsCheck = [ "ixia" ];
25
26
meta = {
0 commit comments