python311Packages.pytest-repeat: fix build

This commit is contained in:
Martin Weinelt 2023-12-24 14:59:15 +01:00
parent 35a3fe0608
commit dac52909e8
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,26 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, hatch-vcs
, pytest
, pytestCheckHook
, pythonOlder
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pytest-repeat";
version = "0.9.3";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
pname = "pytest_repeat";
inherit version;
hash = "sha256-/9ODbfzWe7JwvsZIszDiC+N9KWZEjEFIxAktHoq6gYU=";
};
nativeBuildInputs = [
setuptools-scm
hatchling
hatch-vcs
];
buildInputs = [