aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix b/nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix
new file mode 100644
index 00000000000..c4523ac728c
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pytest-randomly/default.nix
@@ -0,0 +1,31 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27
+, factory_boy, faker, numpy
+, pytest, pytest_xdist
+}:
+
+buildPythonPackage rec {
+ pname = "pytest-randomly";
+ version = "3.4.1";
+
+ disabled = isPy27;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0s9cx692cdchfrjqx7fgf9wnm3fdac211a4hjq1cx9qqnbpdpl2z";
+ };
+
+ propagatedBuildInputs = [ numpy factory_boy faker ];
+
+ checkInputs = [ pytest pytest_xdist ];
+
+ # test warnings are fixed on an unreleased version:
+ # https://github.com/pytest-dev/pytest-randomly/pull/281
+ checkPhase = "pytest -p no:randomly";
+
+ meta = with lib; {
+ description = "Pytest plugin to randomly order tests and control random.seed";
+ homepage = "https://github.com/pytest-dev/pytest-randomly";
+ license = licenses.bsd3;
+ maintainers = [ maintainers.sternenseemann ];
+ };
+}