python2Packages.setuptools-scm: drop

This commit is contained in:
Sigmanificient
2026-01-14 04:38:23 +01:00
parent e3dd84b688
commit bdedefce60
2 changed files with 0 additions and 32 deletions
@@ -1,30 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
toml,
}:
buildPythonPackage rec {
pname = "setuptools_scm";
version = "5.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-g6DO3TRJ45RjB4EaTHudicS1/UZKL7XuzNCluxWK5cg=";
};
propagatedBuildInputs = [ toml ];
# Requires pytest, circular dependency
doCheck = false;
pythonImportsCheck = [ "setuptools_scm" ];
meta = {
homepage = "https://github.com/pypa/setuptools_scm/";
description = "Handles managing your python package versions in scm metadata";
license = lib.licenses.mit;
maintainers = [ ];
};
}
-2
View File
@@ -76,8 +76,6 @@ with super;
setuptools = callPackage ../development/python2-modules/setuptools { };
setuptools-scm = callPackage ../development/python2-modules/setuptools-scm { };
six = super.six.overridePythonAttrs (_: {
doCheck = false; # circular dependency with pytest
});