tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pytest-param-files: 0.3.4 -> 0.6.0
Martin Weinelt
2 years ago
523c7f3f
8cca84ac
+15
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-param-files
default.nix
+15
-7
pkgs/development/python-modules/pytest-param-files/default.nix
···
2
2
, buildPythonPackage
3
3
, fetchFromGitHub
4
4
, flit-core
5
5
+
, ruamel-yaml
5
6
, pytest
6
7
, pytestCheckHook
7
8
}:
8
9
9
10
buildPythonPackage rec {
10
11
pname = "pytest-param-files";
11
11
-
version = "0.3.4";
12
12
+
version = "0.6.0";
13
13
+
format = "pyproject";
12
14
13
15
src = fetchFromGitHub {
14
16
owner = "chrisjsewell";
15
17
repo = pname;
16
16
-
rev = "v${version}";
17
17
-
hash = "sha256-Q7wWoggJN2w2a2umQHx5TsVcugqpovBEtOKruNMZQ8A=";
18
18
+
rev = "refs/tags/v${version}";
19
19
+
hash = "sha256-hgEEfKf9Kmah5WDNHoFWQJKLOs9Z5BDHiebXCdDc1zE=";
18
20
};
19
21
20
20
-
format = "pyproject";
21
21
-
22
22
-
nativeBuildInputs = [ flit-core ];
22
22
+
nativeBuildInputs = [
23
23
+
flit-core
24
24
+
];
23
25
24
26
buildInputs = [
25
27
pytest
26
28
];
27
29
28
28
-
pythonImportsCheck = [ "pytest_param_files" ];
30
30
+
propagatedBuildInputs = [
31
31
+
ruamel-yaml
32
32
+
];
33
33
+
34
34
+
pythonImportsCheck = [
35
35
+
"pytest_param_files"
36
36
+
];
29
37
30
38
nativeCheckInputs = [
31
39
pytestCheckHook