depot/third_party/nixpkgs/pkgs/development/python-modules/spinners/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
666 B
Nix

{
buildPythonPackage,
fetchPypi,
isPy27,
lib,
}:
buildPythonPackage rec {
pname = "spinners";
version = "0.0.24";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy";
};
# Tests are not included in the PyPI distribution and the git repo does not have tagged releases
doCheck = false;
pythonImportsCheck = [ "spinners" ];
meta = with lib; {
description = "Spinners for the Terminal";
homepage = "https://github.com/manrajgrover/py-spinners";
license = licenses.mit;
maintainers = with maintainers; [ urbas ];
};
}