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 b685ddd commit 897f4eaCopy full SHA for 897f4ea
pkgs/development/python-modules/rustworkx/default.nix
@@ -13,6 +13,7 @@
13
libiconv,
14
stdenv,
15
lib,
16
+ pytestCheckHook,
17
}:
18
19
buildPythonPackage rec {
@@ -45,12 +46,17 @@ buildPythonPackage rec {
45
46
47
buildInputs = [ numpy ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
48
- checkInputs = [
49
+ nativeCheckInputs = [
50
fixtures
51
networkx
52
+ pytestCheckHook
53
testtools
54
];
55
56
+ preCheck = ''
57
+ rm -r rustworkx
58
+ '';
59
+
60
pythonImportsCheck = [ "rustworkx" ];
61
62
meta = with lib; {
0 commit comments