23 lines
615 B
Nix
23 lines
615 B
Nix
# WARNING: This file was automatically generated. You should avoid editing it.
|
|
# If you run pynixify again, the file will be either overwritten or
|
|
# deleted, and you will lose the changes you made to it.
|
|
|
|
{ buildPythonPackage, fetchPypi, lib }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click";
|
|
version = "7.1.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "06kbzd6sjfkqan3miwj9wqyddfxc2b6hi7p5s4dvqjb3gif2bdfj";
|
|
};
|
|
|
|
# TODO FIXME
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Composable command line interface toolkit";
|
|
homepage = "https://palletsprojects.com/p/click/";
|
|
};
|
|
}
|