python3.pkgs.click-spinner: init at 0.1.10
This commit is contained in:
parent
af688cc00e
commit
0d55d38b41
|
@ -0,0 +1,30 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, click
|
||||||
|
, six
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "click-spinner";
|
||||||
|
version = "0.1.10";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "h+rPnXKYlzol12Fe9X1Hgq6/kTpTK7pLKKN+Nm6XXa8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
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; [ jtojnar ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1371,6 +1371,8 @@ in {
|
||||||
|
|
||||||
click-plugins = callPackage ../development/python-modules/click-plugins { };
|
click-plugins = callPackage ../development/python-modules/click-plugins { };
|
||||||
|
|
||||||
|
click-spinner = callPackage ../development/python-modules/click-spinner { };
|
||||||
|
|
||||||
click-repl = callPackage ../development/python-modules/click-repl { };
|
click-repl = callPackage ../development/python-modules/click-repl { };
|
||||||
|
|
||||||
click-threading = callPackage ../development/python-modules/click-threading { };
|
click-threading = callPackage ../development/python-modules/click-threading { };
|
||||||
|
|
Loading…
Reference in New Issue