mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pythonPackages.versioneer: init at 0.18
This commit is contained in:
parent
f59a0f7f1a
commit
f3c996e25d
25
pkgs/development/python-modules/versioneer/default.nix
Normal file
25
pkgs/development/python-modules/versioneer/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user