depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-order/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

42 lines
791 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
pytest,
pytest-xdist,
pytest-dependency,
pytest-mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-order";
version = "1.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-RFG9iCG6T6IQlFWi/MiCr2DvjlPgnSRNZ2dL4I9W6sM=";
};
buildInputs = [ pytest ];
nativeCheckInputs = [
pytestCheckHook
pytest-xdist
pytest-dependency
pytest-mock
];
strictDeps = true;
meta = with lib; {
description = "Pytest plugin that allows you to customize the order in which your tests are run";
homepage = "https://github.com/pytest-dev/pytest-order";
license = licenses.mit;
maintainers = with maintainers; [
jacg
Luflosi
];
};
}