summary refs log tree commit diff
path: root/pkgs/development/python-modules/click-repl/default.nix
blob: ec4cffe0d39f45f88f7cbb2d3ad2f8fee6a4dc43 (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.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "cd12f68d745bf6151210790540b4cb064c7b13e571bc64b6957d98d120dacfd8";
  };

  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 ];
  };
}