Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
606 B
Nix
24 lines
606 B
Nix
{ lib, buildPythonPackage, fetchPypi, toml }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools_scm";
|
|
version = "5.0.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-g6DO3TRJ45RjB4EaTHudicS1/UZKL7XuzNCluxWK5cg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ toml ];
|
|
|
|
# Requires pytest, circular dependency
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "setuptools_scm" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pypa/setuptools_scm/";
|
|
description = "Handles managing your python package versions in scm metadata";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|