anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / click-didyoumean / default.nix
bloba781352f39ff2ca8339ce082f6b0309c15e4e660
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   poetry-core,
6   click,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "click-didyoumean";
12   version = "0.3.1";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "click-contrib";
17     repo = "click-didyoumean";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-C8OrJUfBFiDM/Jnf1iJo8pGEd0tUhar1vu4fVIfGzq8=";
20   };
22   build-system = [ poetry-core ];
24   dependencies = [ click ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   meta = with lib; {
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 ];
33   };