···11-{ lib
22-, stdenv
33-, buildPythonPackage
44-, fetchPypi
55-, nose
66-, numpy
77-}:
88-99-buildPythonPackage rec {
1010- pname = "nose-randomly";
1111- version = "1.2.6";
1212- format = "setuptools";
1313-1414- src = fetchPypi {
1515- inherit pname version;
1616- sha256 = "7e483a3d79e13ae760d6ade57ae07ae45bb4b223b61a805e958b4c077116c67c";
1717- };
1818-1919- nativeCheckInputs = [ numpy nose ];
2020-2121- checkPhase = if stdenv.isDarwin then ''
2222- # Work around "OSError: AF_UNIX path too long"
2323- TMPDIR="/tmp" nosetests
2424- '' else ''
2525- nosetests
2626- '';
2727-2828- meta = with lib; {
2929- description = "Nose plugin to randomly order tests and control random.seed";
3030- homepage = "https://github.com/adamchainz/nose-randomly";
3131- license = licenses.bsd3;
3232- maintainers = [ ];
3333- };
3434-}
+1
pkgs/top-level/python-aliases.nix
···307307 nose-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21
308308 nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16
309309 nose-cprof = throw "nose-cprof has been removed since it has not been maintained for 7 years and there are no dependent packages"; # added 2024-05-21
310310+ nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22
310311 nose_progressive = throw "nose_progressive has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; #added 2023-02-21
311312 nose_warnings_filters = nose-warnings-filters; # added 2024-01-07
312313 notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02