mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-12 13:18:57 +03:00
python3Packages.nose-randomly: remove
It was archived and unmaintained since 2019
This commit is contained in:
parent
a2ab4d5ae9
commit
1c8cabbb5c
3 changed files with 1 additions and 36 deletions
|
@ -1,34 +0,0 @@
|
||||||
{ 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 = [ ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -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-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-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-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_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
|
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
|
notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
|
||||||
|
|
|
@ -8869,8 +8869,6 @@ self: super: with self; {
|
||||||
|
|
||||||
nose-pattern-exclude = callPackage ../development/python-modules/nose-pattern-exclude { };
|
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-warnings-filters = callPackage ../development/python-modules/nose-warnings-filters { };
|
||||||
|
|
||||||
nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
|
nose-xunitmp = callPackage ../development/python-modules/nose-xunitmp { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue