summary refs log tree commit diff
path: root/pkgs/development/python-modules/click-repl/default.nix
blob: ee8773999ff0d56aa4d7b2e0d69e6e7170833480 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, 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 lib; {
    homepage = "https://github.com/click-contrib/click-repl";
    description = "Subcommand REPL for click apps";
    license = licenses.mit;
    maintainers = with maintainers; [ twey ];
  };
}