python.pkgs.vcversioner: 2.14.0.0 -> 2.16.0.0

This commit is contained in:
Jörg Thalheim
2017-08-27 15:46:56 +01:00
committed by Frederik Rietdijk
parent 4e1b5e15fb
commit d6e40f2c14
2 changed files with 19 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "vcversioner";
version = "2.16.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "16z10sm78jd7ca3jbkgc3q5i8a8q7y1h21q1li21yy3rlhbhrrns";
};
meta = with stdenv.lib; {
description = "take version numbers from version control";
homepage = https://github.com/habnabit/vcversioner;
licenses = licenses.isc;
};
}