lol

python3Packages.spinners: init at 0.0.24

+28
+26
pkgs/development/python-modules/spinners/default.nix
··· 1 + { buildPythonPackage 2 + , fetchPypi 3 + , isPy27 4 + , lib }: 5 + 6 + buildPythonPackage rec { 7 + pname = "spinners"; 8 + version = "0.0.24"; 9 + disabled = isPy27; 10 + 11 + src = fetchPypi { 12 + inherit pname version; 13 + sha256 = "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy"; 14 + }; 15 + 16 + # Tests are not included in the PyPI distribution and the git repo does not have tagged releases 17 + doCheck = false; 18 + pythonImportsCheck = [ "spinners" ]; 19 + 20 + meta = with lib; { 21 + description = "Spinners for the Terminal."; 22 + homepage = "https://github.com/manrajgrover/py-spinners"; 23 + license = licenses.mit; 24 + maintainers = with maintainers; [ urbas ]; 25 + }; 26 + }
+2
pkgs/top-level/python-packages.nix
··· 7294 7294 7295 7295 sphfile = callPackage ../development/python-modules/sphfile { }; 7296 7296 7297 + spinners = callPackage ../development/python-modules/spinners { }; 7298 + 7297 7299 sphinxcontrib-applehelp = callPackage ../development/python-modules/sphinxcontrib-applehelp { }; 7298 7300 7299 7301 sphinxcontrib-autoapi = callPackage ../development/python-modules/sphinxcontrib-autoapi { };