tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.para: put nose in nativeCheckInputs
Gaetan Lepage
2 years ago
8b14338b
76a9d7a7
+5
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
para
default.nix
+5
-4
pkgs/development/python-modules/para/default.nix
···
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
4
-
, pytestCheckHook
5
, nose
0
6
}:
7
8
buildPythonPackage rec {
···
14
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
15
};
16
17
-
nativeCheckInputs = [ pytestCheckHook ];
18
-
19
-
checkInputs = [ nose ];
0
20
21
pythonImportsCheck = [ "para" ];
22
···
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
0
4
, nose
5
+
, pytestCheckHook
6
}:
7
8
buildPythonPackage rec {
···
14
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
15
};
16
17
+
nativeCheckInputs = [
18
+
nose
19
+
pytestCheckHook
20
+
];
21
22
pythonImportsCheck = [ "para" ];
23