Merge pull request #67871 from prusnak/pytest-random-order

pythonPackages.pytest-random-order: init at 1.0.4
This commit is contained in:
Marek Mahut 2019-09-02 08:14:09 +02:00 committed by GitHub
commit 0a8e54d1c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -2061,6 +2061,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 { };