12 buildPythonPackage rec {
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-cYTCJyHZ9yNg6BfpZ+g3P0yMWFhYUxgYtlbANNgfohQ=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = [ termcolor ];
35 # tests assert for \033 which gets turned off in termcolor when TERM dumb is used which is used by nix
40 pythonImportsCheck = [ "yaspin" ];
43 description = "Yet Another Terminal Spinner";
44 homepage = "https://github.com/pavdmyt/yaspin";
45 license = licenses.mit;
46 maintainers = with maintainers; [ samuela ];