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
, buildPythonPackage
3
, fetchFromGitHub
4
, flit-core
0
5
, pytest
6
, pytestCheckHook
7
}:
8
9
buildPythonPackage rec {
10
pname = "pytest-param-files";
11
-
version = "0.3.4";
0
12
13
src = fetchFromGitHub {
14
owner = "chrisjsewell";
15
repo = pname;
16
-
rev = "v${version}";
17
-
hash = "sha256-Q7wWoggJN2w2a2umQHx5TsVcugqpovBEtOKruNMZQ8A=";
18
};
19
20
-
format = "pyproject";
21
-
22
-
nativeBuildInputs = [ flit-core ];
23
24
buildInputs = [
25
pytest
26
];
27
28
-
pythonImportsCheck = [ "pytest_param_files" ];
0
0
0
0
0
0
29
30
nativeCheckInputs = [
31
pytestCheckHook
···
2
, buildPythonPackage
3
, fetchFromGitHub
4
, flit-core
5
+
, ruamel-yaml
6
, pytest
7
, pytestCheckHook
8
}:
9
10
buildPythonPackage rec {
11
pname = "pytest-param-files";
12
+
version = "0.6.0";
13
+
format = "pyproject";
14
15
src = fetchFromGitHub {
16
owner = "chrisjsewell";
17
repo = pname;
18
+
rev = "refs/tags/v${version}";
19
+
hash = "sha256-hgEEfKf9Kmah5WDNHoFWQJKLOs9Z5BDHiebXCdDc1zE=";
20
};
21
22
+
nativeBuildInputs = [
23
+
flit-core
24
+
];
25
26
buildInputs = [
27
pytest
28
];
29
30
+
propagatedBuildInputs = [
31
+
ruamel-yaml
32
+
];
33
+
34
+
pythonImportsCheck = [
35
+
"pytest_param_files"
36
+
];
37
38
nativeCheckInputs = [
39
pytestCheckHook