pythonPackages.fastprogress: init at 1.0.0
This commit is contained in:
parent
a280022c23
commit
9a09285f5a
32
pkgs/development/python-modules/fastprogress/default.nix
Normal file
32
pkgs/development/python-modules/fastprogress/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, numpy
|
||||
, pytest
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fastprogress";
|
||||
version = "1.0.0";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1zhv37q6jkqd1pfhlkd4yzrc3dg83vyksgzf32mjlhd5sb0qmql9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
# no real tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "fastprogress" ];
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
|
||||
}
|
@ -2004,6 +2004,8 @@ in {
|
||||
|
||||
fastpbkdf2 = callPackage ../development/python-modules/fastpbkdf2 { };
|
||||
|
||||
fastprogress = callPackage ../development/python-modules/fastprogress { };
|
||||
|
||||
fastrlock = callPackage ../development/python-modules/fastrlock { };
|
||||
|
||||
fasttext = callPackage ../development/python-modules/fasttext { };
|
||||
|
Loading…
Reference in New Issue
Block a user