pythonPackages.versioneer: init at 0.18

This commit is contained in:
Jaakko Luttinen 2018-01-14 15:10:31 +02:00
parent f59a0f7f1a
commit f3c996e25d
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964
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

@ -23152,6 +23152,8 @@ EOF
pyqt5 = self.pyqt56;
};
versioneer = callPackage ../development/python-modules/versioneer { };
vine = callPackage ../development/python-modules/vine { };
wp_export_parser = buildPythonPackage rec {