1 { lib, buildPythonPackage, fetchPypi, toml }:
3 buildPythonPackage rec {
4 pname = "setuptools_scm";
9 sha256 = "a8994582e716ec690f33fec70cca0f85bd23ec974e3f783233e4879090a7faa8";
12 propagatedBuildInputs = [ toml ];
14 # Requires pytest, circular dependency
16 pythonImportsCheck = [ "setuptools_scm" ];
19 homepage = "https://github.com/pypa/setuptools_scm/";
20 description = "Handles managing your python package versions in scm metadata";
21 license = licenses.mit;
22 maintainers = with maintainers; [ SuperSandro2000 ];