pythonPackages.pytest-order: init at 0.9.4 (#110141)

This commit is contained in:
Jacek Generowicz 2021-01-28 11:17:37 +01:00 committed by GitHub
parent 4c9a74aa45
commit 750510ee7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ 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 ];
};
}

View file

@ -6087,6 +6087,8 @@ in {
pytest-openfiles = callPackage ../development/python-modules/pytest-openfiles { };
pytest-order = callPackage ../development/python-modules/pytest-order { };
pytest-ordering = callPackage ../development/python-modules/pytest-ordering { };
pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };