pythonPackages.nose-randomly: init at 1.2.5
This commit is contained in:
parent
7fe2539e19
commit
d5399b074a
28
pkgs/development/python-modules/nose-randomly/default.nix
Normal file
28
pkgs/development/python-modules/nose-randomly/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, nose
|
||||
, numpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "nose-randomly";
|
||||
version = "1.2.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "361f4c2fbb090ec2bc8e5e4151e21409a09ac13f364e3448247cc01f326d89b3";
|
||||
};
|
||||
|
||||
checkInputs = [ numpy ];
|
||||
propagatedBuildInputs = [
|
||||
nose
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Nose plugin to randomly order tests and control random.seed";
|
||||
homepage = https://github.com/adamchainz/nose-randomly;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -3111,6 +3111,8 @@ in {
|
||||
|
||||
nose-focus = callPackage ../development/python-modules/nose-focus { };
|
||||
|
||||
nose-randomly = callPackage ../development/python-modules/nose-randomly { };
|
||||
|
||||
nose2 = callPackage ../development/python-modules/nose2 { };
|
||||
|
||||
nose-cover3 = callPackage ../development/python-modules/nose-cover3 { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user