pythonPackages.versiontools: refactor move to python-modules
This commit is contained in:
24
pkgs/development/python-modules/versiontools/default.nix
Normal file
24
pkgs/development/python-modules/versiontools/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user