9 buildPythonPackage rec {
10 pname = "nose-randomly";
14 inherit pname version;
15 sha256 = "7e483a3d79e13ae760d6ade57ae07ae45bb4b223b61a805e958b4c077116c67c";
18 nativeCheckInputs = [ numpy nose ];
20 checkPhase = if stdenv.isDarwin then ''
21 # Work around "OSError: AF_UNIX path too long"
22 TMPDIR="/tmp" nosetests
28 description = "Nose plugin to randomly order tests and control random.seed";
29 homepage = "https://github.com/adamchainz/nose-randomly";
30 license = licenses.bsd3;