nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3.pkgs.click-spinner: init at 0.1.10

authored by

Jan Tojnar and committed by
Jonathan Ringer
0d55d38b af688cc0

+32
+30
pkgs/development/python-modules/click-spinner/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , click 5 + , six 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage 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 + checkInputs = [ 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; [ jtojnar ]; 29 + }; 30 + }
+2
pkgs/top-level/python-packages.nix
··· 1371 1371 1372 1372 click-plugins = callPackage ../development/python-modules/click-plugins { }; 1373 1373 1374 + click-spinner = callPackage ../development/python-modules/click-spinner { }; 1375 + 1374 1376 click-repl = callPackage ../development/python-modules/click-repl { }; 1375 1377 1376 1378 click-threading = callPackage ../development/python-modules/click-threading { };