Unverified Commit 1c8cabbb authored by Moraxyc's avatar Moraxyc
Browse files

python3Packages.nose-randomly: remove

It was archived and unmaintained since 2019
parent a2ab4d5a
Loading
Loading
Loading
Loading
+0 −34
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, nose
, numpy
}:

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

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

  nativeCheckInputs = [ numpy nose ];

  checkPhase = if stdenv.isDarwin then ''
    # Work around "OSError: AF_UNIX path too long"
    TMPDIR="/tmp" nosetests
  '' else ''
    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 = [ ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -307,6 +307,7 @@ mapAliases ({
  nose-cov = throw "nose-cov has been removed, it was archived and unmaintained since 2012"; # added 2024-05-21
  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
  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
  nose-randomly = throw "nose-randomly has been removed, it was archived and unmaintained since 2019"; # added 2024-05-22
  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
  nose_warnings_filters = nose-warnings-filters; # added 2024-01-07
  notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
+0 −2
Original line number Diff line number Diff line
@@ -8869,8 +8869,6 @@ self: super: with self; {
  nose-pattern-exclude = callPackage ../development/python-modules/nose-pattern-exclude { };
  nose-randomly = callPackage ../development/python-modules/nose-randomly { };
  nose-warnings-filters = callPackage ../development/python-modules/nose-warnings-filters { };
  nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };