python2Packages.pluggy: drop

This commit is contained in:
Sigmanificient
2026-01-15 01:41:06 +01:00
parent fa13e71eb9
commit d0ebeb004e
2 changed files with 1 additions and 33 deletions
@@ -1,32 +0,0 @@
{
buildPythonPackage,
lib,
fetchPypi,
setuptools-scm,
importlib-metadata,
}:
buildPythonPackage rec {
pname = "pluggy";
version = "0.13.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0";
};
# To prevent infinite recursion with pytest
doCheck = false;
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ importlib-metadata ];
meta = {
description = "Plugin and hook calling mechanisms for Python";
homepage = "https://github.com/pytest-dev/pluggy";
license = lib.licenses.mit;
maintainers = [ ];
};
}
+1 -1
View File
@@ -41,7 +41,7 @@ with super;
pip = callPackage ../development/python2-modules/pip { };
pluggy = callPackage ../development/python2-modules/pluggy { };
pluggy = disabled super.pluggy;
pycairo = disabled super.pycairo;