summary refs log tree commit diff
path: root/pkgs/development/python-modules/nose-randomly/default.nix
blob: 23315f9531b24c006aa7c2da8f10cce4571dcb33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, nose
, numpy
}:

buildPythonPackage rec {
  pname = "nose-randomly";
  version = "1.2.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7e483a3d79e13ae760d6ade57ae07ae45bb4b223b61a805e958b4c077116c67c";
  };

  checkInputs = [ numpy nose ];

  checkPhase = ''
    nosetests
  '';

  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 ];
  };
}