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

Changed files
+37
pkgs
development
python-modules
pytest-order
top-level
+35
pkgs/development/python-modules/pytest-order/default.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 ];
+
};
+
}
+2
pkgs/top-level/python-packages.nix
···
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 { };