Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / nose-randomly / default.nix
blobafb797d3e2f257053103f3df9ee0e74670243131
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchPypi
5 , nose
6 , numpy
7 }:
9 buildPythonPackage rec {
10   pname = "nose-randomly";
11   version = "1.2.6";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "7e483a3d79e13ae760d6ade57ae07ae45bb4b223b61a805e958b4c077116c67c";
17   };
19   nativeCheckInputs = [ numpy nose ];
21   checkPhase = if stdenv.isDarwin then ''
22     # Work around "OSError: AF_UNIX path too long"
23     TMPDIR="/tmp" nosetests
24   '' else ''
25     nosetests
26   '';
28   meta = with lib; {
29     description = "Nose plugin to randomly order tests and control random.seed";
30     homepage = "https://github.com/adamchainz/nose-randomly";
31     license = licenses.bsd3;
32     maintainers = [ ];
33   };