biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / fastprogress / default.nix
blob576a9784a055828b6b7cc4704780ab77e2f3bf82
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   numpy,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "fastprogress";
11   version = "1.0.3";
12   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-ehfStDiJD4OMBI7vzjLE3tRxl+zI6gQs7MM9PeuAIvU=";
18   };
20   propagatedBuildInputs = [ numpy ];
22   # no real tests
23   doCheck = false;
24   pythonImportsCheck = [ "fastprogress" ];
26   meta = with lib; {
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 ];
31   };