1{ lib, buildPythonPackage, fetchPypi, click, prompt-toolkit }:
2
3buildPythonPackage rec {
4 pname = "click-repl";
5 version = "0.2.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "cd12f68d745bf6151210790540b4cb064c7b13e571bc64b6957d98d120dacfd8";
10 };
11
12 propagatedBuildInputs = [ click prompt-toolkit ];
13
14 meta = with 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}