18 buildPythonPackage rec {
23 src = fetchFromGitHub {
24 owner = "click-contrib";
26 rev = "refs/tags/${version}";
27 hash = "sha256-xCT3w0DDY73dtDL5jbssXM05Zlr44OOcy4vexgHyWiE=";
31 sed -i '/--cov=/d' pyproject.toml
34 nativeBuildInputs = [ setuptools ];
36 propagatedBuildInputs = [
42 nativeCheckInputs = [ pytestCheckHook ];
45 homepage = "https://github.com/click-contrib/click-repl";
46 description = "Subcommand REPL for click apps";
47 license = licenses.mit;
48 maintainers = with maintainers; [ twey ];