13 buildPythonPackage rec {
14 pname = "alive-progress";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
22 repo = "alive-progress";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-yJhl0QrMHET9ISDc/D5AEQ7dTJkmcV2SWqy/xmG18uY=";
27 nativeBuildInputs = [ setuptools ];
29 propagatedBuildInputs = [
39 pythonImportsCheck = [ "alive_progress" ];
42 description = "New kind of Progress Bar, with real-time throughput, ETA, and very cool animations";
43 homepage = "https://github.com/rsalmei/alive-progress";
44 changelog = "https://github.com/rsalmei/alive-progress/blob/v${version}/CHANGELOG.md";
45 license = licenses.mit;
46 maintainers = with maintainers; [ thiagokokada ];