depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-repeat/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

48 lines
879 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 = with maintainers; [ ];
};
}