12 buildPythonPackage rec {
13 pname = "setuptools-scm";
18 pname = "setuptools_scm";
20 hash = "sha256-bFCDRadxqtfVbr/w5wYovysOx1c3Yr6ZYCFHMN4njyc=";
29 propagatedBuildInputs = [
33 ] ++ lib.optionals (pythonOlder "3.11") [
37 pythonImportsCheck = [
41 # check in passthru.tests.pytest to escape infinite recursion on pytest
45 pytest = callPackage ./tests.nix { };
49 homepage = "https://github.com/pypa/setuptools_scm/";
50 description = "Handles managing your python package versions in scm metadata";
51 license = licenses.mit;
52 maintainers = with maintainers; [ nickcao ];