about summary refs log tree commit diff
path: root/pkgs/development/python-modules/click-spinner/default.nix
blob: 0c281c29ab4c61f99cb9305d0926934632356dc2 (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
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, click
, six
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "click-spinner";
  version = "0.1.10";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "h+rPnXKYlzol12Fe9X1Hgq6/kTpTK7pLKKN+Nm6XXa8=";
  };

  nativeCheckInputs = [
    click
    six
    pytestCheckHook
  ];

  meta = with lib; {
    description = "Add support for showwing that command line app is active to Click";
    homepage = "https://github.com/click-contrib/click-spinner";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}