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