tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.pytest-*: pytest-cov -> pytest-cov-stub
pyrox.dev
1 year ago
73cf5262
d5886a2e
+6
-6
3 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-cid
default.nix
pytest-filter-subpackage
default.nix
pytest-notebook
default.nix
+2
-2
pkgs/development/python-modules/pytest-cid/default.nix
···
6
flit-core,
7
py-cid,
8
pytestCheckHook,
9
-
pytest-cov,
10
}:
11
12
buildPythonPackage rec {
···
33
34
nativeCheckInputs = [
35
pytestCheckHook
36
-
pytest-cov
37
];
38
39
pythonImportsCheck = [ "pytest_cid" ];
···
6
flit-core,
7
py-cid,
8
pytestCheckHook,
9
+
pytest-cov-stub,
10
}:
11
12
buildPythonPackage rec {
···
33
34
nativeCheckInputs = [
35
pytestCheckHook
36
+
pytest-cov-stub
37
];
38
39
pythonImportsCheck = [ "pytest_cid" ];
+2
-2
pkgs/development/python-modules/pytest-filter-subpackage/default.nix
···
3
buildPythonPackage,
4
fetchPypi,
5
pytest,
6
-
pytest-cov,
7
pytest-doctestplus,
8
pytestCheckHook,
9
pythonOlder,
···
28
29
propagatedBuildInputs = [
30
pytest-doctestplus
31
-
pytest-cov
32
];
33
34
nativeCheckInputs = [ pytestCheckHook ];
···
3
buildPythonPackage,
4
fetchPypi,
5
pytest,
6
+
pytest-cov-stub,
7
pytest-doctestplus,
8
pytestCheckHook,
9
pythonOlder,
···
28
29
propagatedBuildInputs = [
30
pytest-doctestplus
31
+
pytest-cov-stub
32
];
33
34
nativeCheckInputs = [ pytestCheckHook ];
+2
-2
pkgs/development/python-modules/pytest-notebook/default.nix
···
12
black,
13
coverage,
14
ipykernel,
15
-
pytest-cov,
16
pytest-regressions,
17
pytestCheckHook,
18
}:
···
54
black
55
coverage
56
ipykernel
57
-
pytest-cov
58
pytest-regressions
59
pytestCheckHook
60
];
···
12
black,
13
coverage,
14
ipykernel,
15
+
pytest-cov-stub,
16
pytest-regressions,
17
pytestCheckHook,
18
}:
···
54
black
55
coverage
56
ipykernel
57
+
pytest-cov-stub
58
pytest-regressions
59
pytestCheckHook
60
];