My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/setuptools-scm/default.nix

41 lines
824 B

{ buildPythonPackage
, callPackage
, fetchPypi
, packaging
, tomli
, lib
}:
buildPythonPackage rec {
pname = "setuptools-scm";
version = "6.4.2";
src = fetchPypi {
pname = "setuptools_scm";
inherit version;
sha256 = "sha256-aDOsZcbtlxGk1dImb4Akz6B8UzoOVfTBL27/KApanjA=";
};
propagatedBuildInputs = [
packaging
tomli
];
pythonImportsCheck = [
"setuptools_scm"
];
# check in passhtru.tests.pytest to escape infinite recursion on pytest
doCheck = false;
passthru.tests = {
pytest = callPackage ./tests.nix { };
};
meta = with lib; {
homepage = "https://github.com/pypa/setuptools_scm/";
description = "Handles managing your python package versions in scm metadata";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}