Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / fastprogress / default.nix
blob3a1dc5a30c43c469045a6faa5ff02579656c6d1e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "fastprogress";
10   version = "1.0.3";
11   format = "setuptools";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-ehfStDiJD4OMBI7vzjLE3tRxl+zI6gQs7MM9PeuAIvU=";
17   };
19   propagatedBuildInputs = [ numpy ];
21   # no real tests
22   doCheck = false;
23   pythonImportsCheck = [ "fastprogress" ];
25   meta = with lib; {
26     homepage = "https://github.com/fastai/fastprogress";
27     description = "Simple and flexible progress bar for Jupyter Notebook and console";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ ris ];
30   };