pythonPackages.pytest-random-order: init at 1.0.4
This commit is contained in:
parent
83d60f72ae
commit
c27dcde85a
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2059,6 +2059,8 @@ in {
|
||||||
|
|
||||||
pytest-raisesregexp = callPackage ../development/python-modules/pytest-raisesregexp { };
|
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 { };
|
pytest-repeat = callPackage ../development/python-modules/pytest-repeat { };
|
||||||
|
|
||||||
pytestrunner = callPackage ../development/python-modules/pytestrunner { };
|
pytestrunner = callPackage ../development/python-modules/pytestrunner { };
|
||||||
|
|
Loading…
Reference in New Issue