pythonPackages.setuptools_scm: 1.15.0 -> 1.15.6

This commit is contained in:
Lancelot SIX
2017-07-20 14:57:57 +02:00
committed by Frederik Rietdijk
parent d2b5850ad0
commit 84c6e6b4d7
2 changed files with 25 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, pip }:
buildPythonPackage rec {
pname = "setuptools_scm";
name = "${pname}-${version}";
version = "1.15.6";
src = fetchPypi {
inherit pname version;
sha256 = "0pzvfmx8s20yrgkgwfbxaspz2x1g38qv61jpm0ns91lrb22ldas9";
};
buildInputs = [ pip ];
# Seems to fail due to chroot and would cause circular dependency
# with pytest
doCheck = false;
meta = with stdenv.lib; {
homepage = https://bitbucket.org/pypa/setuptools_scm/;
description = "Handles managing your python package versions in scm metadata";
license = licenses.mit;
maintainers = with maintainers; [ jgeerds ];
};
}