about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-order
diff options
context:
space:
mode:
authorJacek Generowicz <jacg@my-post-office.net>2021-01-28 11:17:37 +0100
committerGitHub <noreply@github.com>2021-01-28 11:17:37 +0100
commit750510ee7cf588f317cddb7810ef2f28b8d66fb7 (patch)
tree45615eb73324ca20d3d4c4303b7b0eae07fc8d8e /pkgs/development/python-modules/pytest-order
parent4c9a74aa459dc525fcfdfb3019b234f68de66c8a (diff)
pythonPackages.pytest-order: init at 0.9.4 (#110141)
Diffstat (limited to 'pkgs/development/python-modules/pytest-order')
-rw-r--r--pkgs/development/python-modules/pytest-order/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-order/default.nix b/pkgs/development/python-modules/pytest-order/default.nix
new file mode 100644
index 0000000000000..b07be1178c631
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-order/default.nix
@@ -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 ];
+  };
+}