My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/versiontools/default.nix

24 lines
458 B

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