python310Packages.backports_tempfile: remove

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

View File

@ -1,34 +0,0 @@
{ lib
, unittestCheckHook
, buildPythonPackage
, fetchPypi
, setuptools-scm
, backports_weakref
}:
buildPythonPackage rec {
pname = "backports.tempfile";
version = "1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1c648c452e8770d759bdc5a5e2431209be70d25484e1be24876cf2168722c762";
};
buildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ backports_weakref ];
# requires https://pypi.org/project/backports.test.support
doCheck = false;
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [ "-s" "tests" ];
meta = {
description = "Backport of new features in Python's tempfile module";
license = lib.licenses.psfl;
homepage = "https://github.com/pjdelport/backports.tempfile";
};
}

View File

@ -50,6 +50,7 @@ mapAliases ({
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
backports_tempfile = throw "backports_tempfile has been removed, since we no longer need to backport to python3.3"; # 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

@ -1207,8 +1207,6 @@ self: super: with self; {
backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which { };
backports_tempfile = callPackage ../development/python-modules/backports_tempfile { };
backports_unittest-mock = callPackage ../development/python-modules/backports_unittest-mock { };
backports_weakref = callPackage ../development/python-modules/backports_weakref { };