Commit bdedefce authored by Sigmanificient's avatar Sigmanificient
Browse files

python2Packages.setuptools-scm: drop

parent e3dd84b6
Loading
Loading
Loading
Loading
+0 −30
Original line number Diff line number Diff line
{
  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 = [ ];
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -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
  });