Merge pull request #33856 from jluttine/add-versioneer
pythonPackages.versioneer: init at 0.18
This commit is contained in:
commit
a6af522217
|
@ -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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -22523,6 +22523,8 @@ EOF
|
||||||
|
|
||||||
uranium = callPackage ../development/python-modules/uranium { };
|
uranium = callPackage ../development/python-modules/uranium { };
|
||||||
|
|
||||||
|
versioneer = callPackage ../development/python-modules/versioneer { };
|
||||||
|
|
||||||
vine = callPackage ../development/python-modules/vine { };
|
vine = callPackage ../development/python-modules/vine { };
|
||||||
|
|
||||||
wp_export_parser = buildPythonPackage rec {
|
wp_export_parser = buildPythonPackage rec {
|
||||||
|
|
Loading…
Reference in New Issue