pythonPackages.pytest-random-order: init at 1.0.4

This commit is contained in:
Pavol Rusnak 2019-09-01 10:08:09 +02:00
parent 83d60f72ae
commit c27dcde85a
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytest
}:
buildPythonPackage rec {
version = "1.0.4";
pname = "pytest-random-order";
src = fetchPypi {
inherit pname version;
sha256 = "6b2159342a4c8c10855bc4fc6d65ee890fc614cb2b4ff688979b008a82a0ff52";
};
disabled = pythonOlder "3.5";
propagatedBuildInputs = [ pytest ];
meta = with stdenv.lib; {
homepage = "https://github.com/jbasko/pytest-random-order";
description = "Randomise the order of tests with some control over the randomness";
license = licenses.mit;
maintainers = [ maintainers.prusnak ];
};
}

View File

@ -2059,6 +2059,8 @@ in {
pytest-raisesregexp = callPackage ../development/python-modules/pytest-raisesregexp { };
pytest-random-order = callPackage ../development/python-modules/pytest-random-order { };
pytest-repeat = callPackage ../development/python-modules/pytest-repeat { };
pytestrunner = callPackage ../development/python-modules/pytestrunner { };