1{ buildPythonPackage 2, fetchPypi 3, isPy27 4, lib }: 5 6buildPythonPackage 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}