3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/click/default.nix

37 lines
932 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, substituteAll, locale, pytest }:
2018-03-31 17:30:40 +01:00
buildPythonPackage rec {
pname = "click";
2018-11-04 10:34:55 +00:00
version = "7.0";
2018-03-31 17:30:40 +01:00
src = fetchPypi {
2018-11-04 10:38:52 +00:00
pname = "Click";
inherit version;
2018-11-04 10:34:55 +00:00
sha256 = "5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7";
2018-03-31 17:30:40 +01:00
};
2018-06-19 18:01:04 +01:00
patches = stdenv.lib.optional (stdenv.lib.versionAtLeast version "6.7") (substituteAll {
src = ./fix-paths.patch;
locale = "${locale}/bin/locale";
});
2018-03-31 17:30:40 +01:00
buildInputs = [ pytest ];
checkPhase = ''
py.test tests
'';
# https://github.com/pallets/click/issues/823
doCheck = false;
meta = with stdenv.lib; {
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;
};
}