python2Packages.contextlib2: drop

This commit is contained in:
Sigmanificient
2026-01-15 01:41:06 +01:00
parent 04f7b4cd68
commit 0a2a17a537
2 changed files with 1 additions and 26 deletions
@@ -1,25 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "contextlib2";
version = "0.6.0.post1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "01f490098c18b19d2bd5bb5dc445b2054d2fa97f09a4280ba2c5f3c394c8162e";
};
# requires unittest2, which has been removed
doCheck = false;
meta = {
description = "Backports and enhancements for the contextlib module";
homepage = "https://contextlib2.readthedocs.org/";
license = lib.licenses.psfl;
};
}
+1 -1
View File
@@ -15,7 +15,7 @@ with super;
configparser = callPackage ../development/python2-modules/configparser { };
contextlib2 = callPackage ../development/python2-modules/contextlib2 { };
contextlib2 = disabled super.contextlib2;
coverage = disabled super.coverage;