My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/fastprogress/default.nix

31 lines
658 B

{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pythonOlder
}:
buildPythonPackage rec {
pname = "fastprogress";
version = "1.0.2";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-lga6RCUFo6RFgdY97dzlv/HfF6y9w3JS98PxvlLB0kM=";
};
propagatedBuildInputs = [ numpy ];
# no real tests
doCheck = false;
pythonImportsCheck = [ "fastprogress" ];
meta = with lib; {
homepage = "https://github.com/fastai/fastprogress";
description = "Simple and flexible progress bar for Jupyter Notebook and console";
license = licenses.asl20;
maintainers = with maintainers; [ ris ];
};
}