Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 534 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, click, prompt_toolkit }: 2 3buildPythonPackage rec { 4 pname = "click-repl"; 5 version = "0.1.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1mcmz95595nrp4r58spy1ac993db26hk4q97isghbmn4md99vwmr"; 10 }; 11 12 propagatedBuildInputs = [ click prompt_toolkit ]; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/click-contrib/click-repl; 16 description = "Subcommand REPL for click apps"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ twey ]; 19 }; 20}