python310Packages.backports_functools_lru_cache: remove

we no longer need to backport to python3.2
This commit is contained in:
natsukium 2023-07-28 23:47:36 +09:00
parent 561a8461e5
commit b9b3be8e09
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53
6 changed files with 3 additions and 43 deletions

View file

@ -1,32 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, isPy3k
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "backports.functools_lru_cache";
version = "1.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "d5ed2169378b67d3c545e5600d363a923b09c456dab1593914935a68ad478271";
};
nativeBuildInputs = [ setuptools-scm ];
nativeCheckInputs = [ pytestCheckHook ];
# Test fail on Python 2
doCheck = isPy3k;
pythonNamespaces = [ "backports" ];
meta = {
description = "Backport of functools.lru_cache";
homepage = "https://github.com/jaraco/backports.functools_lru_cache";
license = lib.licenses.mit;
};
}

View file

@ -3,7 +3,6 @@
, fetchPypi
, hatchling
, isPy3k
, backports_functools_lru_cache
}:
buildPythonPackage rec {

View file

@ -1,6 +1,4 @@
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
, isPy3k
, backports_functools_lru_cache
, setuptools
}:
@ -15,9 +13,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ setuptools ] ++ lib.optionals (!isPy3k) [
backports_functools_lru_cache
];
propagatedBuildInputs = [ setuptools ];
# To prevent infinite recursion with pytest
doCheck = false;

View file

@ -2963,9 +2963,7 @@ lib.composeManyExtensions [
});
wcwidth = super.wcwidth.overridePythonAttrs (old: {
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++
lib.optional self.isPy27 (self.backports-functools-lru-cache or self.backports_functools_lru_cache)
;
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]);
});
wtforms = super.wtforms.overridePythonAttrs (old: {

View file

@ -49,6 +49,7 @@ mapAliases ({
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
Babel = babel; # added 2022-05-06
backports_csv = throw "backports_csv has been removed, since we no longer need to backport to python2"; # added 2023-07-28
backports_functools_lru_cache = throw "backports_functools_lru_cache has been removed, since we no longer need to backport to python3.2"; # added 2023-07-28
bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04
bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15
BlinkStick = blinkstick; # added 2023-02-19

View file

@ -1203,8 +1203,6 @@ self: super: with self; {
backports-entry-points-selectable = callPackage ../development/python-modules/backports-entry-points-selectable { };
backports_functools_lru_cache = callPackage ../development/python-modules/backports_functools_lru_cache { };
backports_shutil_get_terminal_size = callPackage ../development/python-modules/backports_shutil_get_terminal_size { };
backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which { };