Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / spinners / default.nix
blob6328a43df8f77107565f929299cebfb3279ea5e3
1 { buildPythonPackage
2 , fetchPypi
3 , isPy27
4 , lib }:
6 buildPythonPackage rec {
7   pname = "spinners";
8   version = "0.0.24";
9   format = "setuptools";
10   disabled = isPy27;
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy";
15   };
17   # Tests are not included in the PyPI distribution and the git repo does not have tagged releases
18   doCheck = false;
19   pythonImportsCheck = [ "spinners" ];
21   meta = with lib; {
22     description = "Spinners for the Terminal.";
23     homepage = "https://github.com/manrajgrover/py-spinners";
24     license = licenses.mit;
25     maintainers = with maintainers; [ urbas ];
26   };