blob: 8c1bf6f26e94f365a98c3029b0087fd2f20cccd3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ lib, buildPythonPackage, fetchPypi,
click
}:
buildPythonPackage rec {
pname = "click-didyoumean";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "f184f0d851d96b6d29297354ed981b7dd71df7ff500d82fa6d11f0856bee8035";
};
propagatedBuildInputs = [ click ];
meta = with lib; {
description = "Enable git-like did-you-mean feature in click";
homepage = "https://github.com/click-contrib/click-didyoumean";
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}
|