pythonPackages.nose-randomly: init at 1.2.5

wip/yesman
Chris Ostrouchov 6 years ago committed by Frederik Rietdijk
parent 7fe2539e19
commit d5399b074a
  1. 28
      pkgs/development/python-modules/nose-randomly/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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…
Cancel
Save