{ stdenv, buildPythonPackage, fetchPypi }: buildPythonPackage rec { pname = "click"; version = "6.7"; src = fetchPypi { inherit pname version; sha256 = "f15516df478d5a56180fbf80e68f206010e6d160fc39fa508b65e035fd75130b"; }; 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; maintainers = with maintainers; [ mog ]; }; }