10 buildPythonPackage rec {
11 pname = "click-didyoumean";
15 src = fetchFromGitHub {
16 owner = "click-contrib";
17 repo = "click-didyoumean";
18 rev = "refs/tags/v${version}";
19 hash = "sha256-C8OrJUfBFiDM/Jnf1iJo8pGEd0tUhar1vu4fVIfGzq8=";
22 build-system = [ poetry-core ];
24 dependencies = [ click ];
26 nativeCheckInputs = [ pytestCheckHook ];
29 description = "Enable git-like did-you-mean feature in click";
30 homepage = "https://github.com/click-contrib/click-didyoumean";
31 license = licenses.mit;
32 maintainers = with maintainers; [ mbode ];