nixpkgs/pkgs/development/python-modules/pytest-order/default.nix
2021-01-28 11:17:37 +01:00

36 lines
712 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
, pytest
, pytest-xdist
, pytest-dependency
, pytest-mock
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-order";
version = "0.9.4";
src = fetchPypi {
inherit pname version;
sha256 = "0b7i8z6rywnkb3skyg8bnfqgkjrwvkn64b4q07wfl1q7x65ksd26";
};
propagatedBuildInputs = [ pytest ];
checkInputs = [
pytestCheckHook
pytest-xdist
pytest-dependency
pytest-mock
];
meta = {
description = "Pytest plugin that allows you to customize the order in which your tests are run";
homepage = "https://github.com/mrbean-bremen/pytest-order";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jacg ];
};
}