forked from mirrors/nixpkgs
python310Packages.ordereddict: drop
This commit is contained in:
parent
7895b85444
commit
ab0b9034b5
|
@ -1,21 +0,0 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ordereddict";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "07qvy11nvgxpzarrni3wrww3vpc9yafgi2bch4j2vvvc42nb8d8w";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
|
||||
}
|
|
@ -97,6 +97,7 @@ mapAliases ({
|
|||
mailman-web = throw "Please use pkgs.mailman-web"; # added 2022-04-29
|
||||
net2grid = gridnet; # add 2022-04-22
|
||||
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
|
||||
ordereddict = throw "ordereddict has been removed because it is only useful on unsupported python versions."; # added 2022-05-28
|
||||
pam = python-pam; # added 2020-09-07.
|
||||
PasteDeploy = pastedeploy; # added 2021-10-07
|
||||
pathpy = path; # added 2022-04-12
|
||||
|
|
|
@ -6120,8 +6120,6 @@ in {
|
|||
|
||||
opuslib = callPackage ../development/python-modules/opuslib { };
|
||||
|
||||
ordereddict = callPackage ../development/python-modules/ordereddict { };
|
||||
|
||||
orderedmultidict = callPackage ../development/python-modules/orderedmultidict { };
|
||||
|
||||
ordered-set = callPackage ../development/python-modules/ordered-set { };
|
||||
|
|
Loading…
Reference in a new issue