blob: a63394df32d249d92a7c4a4770036234051aa753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchPypi,
click,
pytest,
setuptools,
}:
buildPythonPackage rec {
pname = "click-plugins";
version = "1.1.1.2";
pyproject = true;
src = fetchPypi {
pname = "click_plugins";
inherit version;
sha256 = "sha256-1685hKmdJDwTGqGoKDMedjD0qIqXQf0FySeyBLz5ImE=";
};
build-system = [ setuptools ];
dependencies = [ click ];
nativeCheckInputs = [ pytest ];
meta = {
description = "Extension module for click to enable registering CLI commands";
homepage = "https://github.com/click-contrib/click-plugins";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}
|