nixpkgs/pkgs/development/python-modules/pytest-repeat/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

43 lines
853 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
hatch-vcs,
pytest,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pytest-repeat";
version = "0.9.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
pname = "pytest_repeat";
inherit version;
hash = "sha256-/9ODbfzWe7JwvsZIszDiC+N9KWZEjEFIxAktHoq6gYU=";
};
nativeBuildInputs = [
hatchling
hatch-vcs
];
buildInputs = [ pytest ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_repeat" ];
meta = with lib; {
description = "Pytest plugin for repeating tests";
homepage = "https://github.com/pytest-dev/pytest-repeat";
changelog = "https://github.com/pytest-dev/pytest-repeat/blob/v${version}/CHANGES.rst";
license = licenses.mpl20;
maintainers = [ ];
};
}