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
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
-
, pytestCheckHook
5
4
, nose
5
5
+
, pytestCheckHook
6
6
}:
7
7
8
8
buildPythonPackage rec {
···
14
14
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
15
15
};
16
16
17
17
-
nativeCheckInputs = [ pytestCheckHook ];
18
18
-
19
19
-
checkInputs = [ nose ];
17
17
+
nativeCheckInputs = [
18
18
+
nose
19
19
+
pytestCheckHook
20
20
+
];
20
21
21
22
pythonImportsCheck = [ "para" ];
22
23