9 buildPythonPackage rec {
10 pname = "fastprogress";
12 format = "setuptools";
13 disabled = pythonOlder "3.6";
16 inherit pname version;
17 hash = "sha256-ehfStDiJD4OMBI7vzjLE3tRxl+zI6gQs7MM9PeuAIvU=";
20 propagatedBuildInputs = [ numpy ];
24 pythonImportsCheck = [ "fastprogress" ];
27 homepage = "https://github.com/fastai/fastprogress";
28 description = "Simple and flexible progress bar for Jupyter Notebook and console";
29 license = licenses.asl20;
30 maintainers = with maintainers; [ ris ];