3
0
Fork 0
forked from mirrors/nixpkgs

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;
};
}

View file

@ -9806,19 +9806,7 @@ in {
jsonschema = callPackage ../development/python-modules/jsonschema { };
vcversioner = buildPythonPackage rec {
name = "vcversioner-${version}";
version = "2.14.0.0";
src = pkgs.fetchurl {
url = "mirror://pypi/v/vcversioner/vcversioner-${version}.tar.gz";
sha256 = "11ivq1bm7v0yb4nsfbv9m7g7lyjn112gbvpjnjz8nv1fx633dm5c";
};
meta = with stdenv.lib; {
homepage = "https://github.com/habnabit/vcversioner";
};
};
vcversioner = callPackage ../development/python-modules/vcversioner { };
falcon = buildPythonPackage (rec {
name = "falcon-1.0.0";