mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
22 lines
565 B
Nix
22 lines
565 B
Nix
{ lib, buildPythonPackage, fetchPypi, pip, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setuptools_scm";
|
|
version = "4.1.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a8994582e716ec690f33fec70cca0f85bd23ec974e3f783233e4879090a7faa8";
|
|
};
|
|
|
|
# Requires pytest, circular dependency
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://bitbucket.org/pypa/setuptools_scm/";
|
|
description = "Handles managing your python package versions in scm metadata";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|