1{
2 buildPythonPackage,
3 fetchPypi,
4 isPy27,
5 lib,
6}:
7
8buildPythonPackage rec {
9 pname = "spinners";
10 version = "0.0.24";
11 format = "setuptools";
12 disabled = isPy27;
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy";
17 };
18
19 # Tests are not included in the PyPI distribution and the git repo does not have tagged releases
20 doCheck = false;
21 pythonImportsCheck = [ "spinners" ];
22
23 meta = with lib; {
24 description = "Spinners for the Terminal";
25 homepage = "https://github.com/manrajgrover/py-spinners";
26 license = licenses.mit;
27 maintainers = with maintainers; [ urbas ];
28 };
29}