python2Packages.futures: drop

This commit is contained in:
Sigmanificient
2026-01-14 04:38:23 +01:00
parent 7b46a2bdd2
commit 46bbd4592b
2 changed files with 0 additions and 37 deletions
@@ -1,35 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
python,
stdenv,
}:
buildPythonPackage rec {
pname = "futures";
version = "3.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "7e033af76a5e35f58e56da7a91e687706faf4e7bdfb2cbc3f2cca6b9bcda9794";
};
# This module is for backporting functionality to Python 2.x, it's builtin in py3k
disabled = isPy3k;
checkPhase = ''
${python.interpreter} test_futures.py
'';
doCheck = !stdenv.hostPlatform.isDarwin;
meta = {
description = "Backport of the concurrent.futures package from Python 3.2";
homepage = "https://github.com/agronholm/pythonfutures";
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
-2
View File
@@ -25,8 +25,6 @@ with super;
filelock = callPackage ../development/python2-modules/filelock { };
futures = callPackage ../development/python2-modules/futures { };
hypothesis = callPackage ../development/python2-modules/hypothesis { };
importlib-metadata = callPackage ../development/python2-modules/importlib-metadata { };