tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.pytest-repeat: fix build
Martin Weinelt
2 years ago
dac52909
35a3fe06
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-repeat
default.nix
+7
-4
pkgs/development/python-modules/pytest-repeat/default.nix
···
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
0
0
4
, pytest
5
, pytestCheckHook
6
, pythonOlder
7
-
, setuptools-scm
8
}:
9
10
buildPythonPackage rec {
11
pname = "pytest-repeat";
12
version = "0.9.3";
13
-
format = "setuptools";
14
15
disabled = pythonOlder "3.7";
16
17
src = fetchPypi {
18
-
inherit pname version;
0
19
hash = "sha256-/9ODbfzWe7JwvsZIszDiC+N9KWZEjEFIxAktHoq6gYU=";
20
};
21
22
nativeBuildInputs = [
23
-
setuptools-scm
0
24
];
25
26
buildInputs = [
···
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
4
+
, hatchling
5
+
, hatch-vcs
6
, pytest
7
, pytestCheckHook
8
, pythonOlder
0
9
}:
10
11
buildPythonPackage rec {
12
pname = "pytest-repeat";
13
version = "0.9.3";
14
+
pyproject = true;
15
16
disabled = pythonOlder "3.7";
17
18
src = fetchPypi {
19
+
pname = "pytest_repeat";
20
+
inherit version;
21
hash = "sha256-/9ODbfzWe7JwvsZIszDiC+N9KWZEjEFIxAktHoq6gYU=";
22
};
23
24
nativeBuildInputs = [
25
+
hatchling
26
+
hatch-vcs
27
];
28
29
buildInputs = [