click_5: init at 5.1

This commit is contained in:
Matthew O'Gorman 2016-01-06 03:56:01 -05:00
parent c87ef76027
commit ecac5e9f67
No known key found for this signature in database
GPG key ID: F71F32386DEAE4B2

View file

@ -2629,6 +2629,26 @@ in modules // {
};
};
click_5 = buildPythonPackage rec {
name = "click-5.1";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz";
sha256 = "0njsm0wn31l21bi118g5825ma5sa3rwn7v2x4wjd7yiiahkri337";
};
meta = {
homepage = http://click.pocoo.org/;
description = "Create beautiful command line interfaces in Python";
longDescription = ''
A Python package for creating beautiful command line interfaces in a
composable way, with as little code as necessary.
'';
license = licenses.bsd3;
maintainers = with maintainers; [ mog ];
};
};
click-log = buildPythonPackage rec {
version = "0.1.1";
name = "click-log-${version}";