Python: click: upgrade 2.1 -> 3.3 (!)

This commit is contained in:
Tobias Geerinckx-Rice 2015-01-14 07:09:47 +01:00
parent e38c351f2b
commit 3aaec79aed

View File

@ -1465,21 +1465,26 @@ let
}; };
}; };
click = buildPythonPackage rec {
name = "click-3.3";
click = buildPythonPackage {
name = "click-2.1";
src = pkgs.fetchurl { src = pkgs.fetchurl {
url = https://pypi.python.org/packages/source/c/click/click-2.1.tar.gz; url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz";
md5 = "0ba97ba09af82c56e2d35f3412d0aa6e"; sha256 = "1rfn8ml80rw3hkgpm1an5p3vdyhh7hzx4zynr8dhfl7bsw28r77p";
}; };
meta = {
homepage = "http://click.pocoo.org/"; meta = with stdenv.lib; {
description = "A Python package for creating beautiful command line interfaces in a composable way with as little code as necessary"; homepage = http://click.pocoo.org/;
license = stdenv.lib.licenses.bsd3; 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 = with licenses; [ bsd3 ];
maintainers = with maintainers; [ nckx ];
}; };
}; };
clepy = buildPythonPackage rec { clepy = buildPythonPackage rec {
name = "clepy-0.3.20"; name = "clepy-0.3.20";