mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
python310Packages.backports_functools_lru_cache: remove
we no longer need to backport to python3.2
This commit is contained in:
parent
561a8461e5
commit
b9b3be8e09
6 changed files with 3 additions and 43 deletions
|
@ -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;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -3,7 +3,6 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, hatchling
|
, hatchling
|
||||||
, isPy3k
|
, isPy3k
|
||||||
, backports_functools_lru_cache
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
|
{ lib, fetchPypi, buildPythonPackage, pytestCheckHook
|
||||||
, isPy3k
|
|
||||||
, backports_functools_lru_cache
|
|
||||||
, setuptools
|
, setuptools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -15,9 +13,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ setuptools ] ++ lib.optionals (!isPy3k) [
|
propagatedBuildInputs = [ setuptools ];
|
||||||
backports_functools_lru_cache
|
|
||||||
];
|
|
||||||
|
|
||||||
# To prevent infinite recursion with pytest
|
# To prevent infinite recursion with pytest
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
|
@ -2963,9 +2963,7 @@ lib.composeManyExtensions [
|
||||||
});
|
});
|
||||||
|
|
||||||
wcwidth = super.wcwidth.overridePythonAttrs (old: {
|
wcwidth = super.wcwidth.overridePythonAttrs (old: {
|
||||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++
|
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]);
|
||||||
lib.optional self.isPy27 (self.backports-functools-lru-cache or self.backports_functools_lru_cache)
|
|
||||||
;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
wtforms = super.wtforms.overridePythonAttrs (old: {
|
wtforms = super.wtforms.overridePythonAttrs (old: {
|
||||||
|
|
|
@ -49,6 +49,7 @@ mapAliases ({
|
||||||
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
|
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
|
||||||
Babel = babel; # added 2022-05-06
|
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_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
|
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
|
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
|
BlinkStick = blinkstick; # added 2023-02-19
|
||||||
|
|
|
@ -1203,8 +1203,6 @@ self: super: with self; {
|
||||||
|
|
||||||
backports-entry-points-selectable = callPackage ../development/python-modules/backports-entry-points-selectable { };
|
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_get_terminal_size = callPackage ../development/python-modules/backports_shutil_get_terminal_size { };
|
||||||
|
|
||||||
backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which { };
|
backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue