My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/click-repl/default.nix

37 lines
671 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, click
, prompt-toolkit
, six
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "click-repl";
version = "0.2.0";
src = fetchFromGitHub {
owner = "click-contrib";
repo = "click-repl";
rev = version;
hash = "sha256-kaTUKaIomJL0u3NX40bL0I54vkR+Utcdw1QKSbnVy5s=";
};
propagatedBuildInputs = [
click
prompt-toolkit
six
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
homepage = "https://github.com/click-contrib/click-repl";
description = "Subcommand REPL for click apps";
license = licenses.mit;
maintainers = with maintainers; [ twey ];
};
}