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";
|
2021-06-18 22:47:11 +01:00
|
|
|
version = "0.2.0";
|
2018-11-06 11:56:07 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:11 +01:00
|
|
|
sha256 = "cd12f68d745bf6151210790540b4cb064c7b13e571bc64b6957d98d120dacfd8";
|
2018-11-06 11:56:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|