Merge pull request #33856 from jluttine/add-versioneer

pythonPackages.versioneer: init at 0.18
This commit is contained in:
Frederik Rietdijk 2018-01-14 15:05:42 +01:00 committed by GitHub
commit a6af522217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "versioneer";
version = "0.18";
src = fetchPypi {
inherit pname version;
sha256 = "0dgkzg1r7mjg91xp81sv9z4mabyxl39pkd11jlc1200md20zglga";
};
# Couldn't get tests to work because, for instance, they used virtualenv and
# pip.
doCheck = false;
meta = with stdenv.lib; {
description = "Version-string management for VCS-controlled trees";
homepage = https://github.com/warner/python-versioneer;
license = licenses.publicDomain;
maintainers = with maintainers; [ jluttine ];
};
}

View File

@ -22523,6 +22523,8 @@ EOF
uranium = callPackage ../development/python-modules/uranium { };
versioneer = callPackage ../development/python-modules/versioneer { };
vine = callPackage ../development/python-modules/vine { };
wp_export_parser = buildPythonPackage rec {