2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, click, prompt_toolkit }:
|
2018-11-06 11:56:07 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "click-repl";
|
|
|
|
version = "0.1.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1mcmz95595nrp4r58spy1ac993db26hk4q97isghbmn4md99vwmr";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ click prompt_toolkit ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/click-contrib/click-repl";
|
2018-11-06 11:56:07 +00:00
|
|
|
description = "Subcommand REPL for click apps";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ twey ];
|
|
|
|
};
|
|
|
|
}
|