pythonPackages.versiontools: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 11:47:15 -04:00
parent 35f95f0595
commit dcd9daa561
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 25 additions and 10 deletions

View file

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "versiontools";
version = "1.9.1";
src = fetchPypi {
inherit pname version;
sha256 = "1xhl6kl7f4srgnw6zw4lr8j2z5vmrbaa83nzn2c9r2m1hwl36sd9";
};
doCheck = (!isPy3k);
meta = with stdenv.lib; {
homepage = https://launchpad.net/versiontools;
description = "Smart replacement for plain tuple used in __version__";
license = licenses.lgpl2;
};
}

View file

@ -4294,16 +4294,7 @@ in {
txamqp = callPackage ../development/python-modules/txamqp { };
versiontools = buildPythonPackage rec {
name = "versiontools-1.9.1";
doCheck = (!isPy3k);
src = pkgs.fetchurl {
url = "mirror://pypi/v/versiontools/${name}.tar.gz";
sha256 = "1xhl6kl7f4srgnw6zw4lr8j2z5vmrbaa83nzn2c9r2m1hwl36sd9";
};
};
versiontools = callPackage ../development/python-modules/versiontools { };
veryprettytable = buildPythonPackage rec {
name = "veryprettytable-${version}";