12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-4IWaAPqzGri7V8X2gL607F5GlWfIFDlBBpDwSe4sz9I=";
26 build-system = [ poetry-core ];
28 dependencies = [ termcolor ];
39 # tests assert for \033 which gets turned off in termcolor when TERM dumb is used which is used by nix
44 pythonImportsCheck = [ "yaspin" ];
47 description = "Yet Another Terminal Spinner";
48 homepage = "https://github.com/pavdmyt/yaspin";
49 license = licenses.mit;
50 maintainers = with maintainers; [ samuela ];