pythonPackages.pytest-order: init at 0.9.4 (#110141)
This commit is contained in:
parent
4c9a74aa45
commit
750510ee7c
35
pkgs/development/python-modules/pytest-order/default.nix
Normal file
35
pkgs/development/python-modules/pytest-order/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6087,6 +6087,8 @@ in {
|
|||||||
|
|
||||||
pytest-openfiles = callPackage ../development/python-modules/pytest-openfiles { };
|
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-ordering = callPackage ../development/python-modules/pytest-ordering { };
|
||||||
|
|
||||||
pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };
|
pytest-pep257 = callPackage ../development/python-modules/pytest-pep257 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user