summary refs log blame commit diff
path: root/pkgs/development/python-modules/click-repl/default.nix
blob: 8a487ab241022dcd37e49589729512a1c810e9c6 (plain) (tree)



















                                                                    
{ stdenv, buildPythonPackage, fetchPypi, click, prompt_toolkit }:

buildPythonPackage rec {
  pname = "click-repl";
  version = "0.1.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mcmz95595nrp4r58spy1ac993db26hk4q97isghbmn4md99vwmr";
  };

  propagatedBuildInputs = [ click prompt_toolkit ];

  meta = with stdenv.lib; {
    homepage = https://github.com/click-contrib/click-repl;
    description = "Subcommand REPL for click apps";
    license = licenses.mit;
    maintainers = with maintainers; [ twey ];
  };
}