Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / click-spinner / default.nix
blob2cdd1f4800cd273f6a64e6098150696ecec90511
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , click
5 , six
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "click-spinner";
11   version = "0.1.10";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "h+rPnXKYlzol12Fe9X1Hgq6/kTpTK7pLKKN+Nm6XXa8=";
16   };
18   nativeCheckInputs = [
19     click
20     six
21     pytestCheckHook
22   ];
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   };