1{ lib
2, buildPythonPackage
3, fetchPypi
4, click
5, six
6, pytestCheckHook
7}:
8
9buildPythonPackage rec {
10 pname = "click-spinner";
11 version = "0.1.10";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "h+rPnXKYlzol12Fe9X1Hgq6/kTpTK7pLKKN+Nm6XXa8=";
16 };
17
18 nativeCheckInputs = [
19 click
20 six
21 pytestCheckHook
22 ];
23
24 meta = with lib; {
25 description = "Add support for showwing that command line app is active to Click";
26 homepage = "https://github.com/click-contrib/click-spinner";
27 license = licenses.mit;
28 maintainers = with maintainers; [ ];
29 };
30}