nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.fastprogress: init at 1.0.0

(cherry picked from commit 9a09285f5a89b73fc79a91d29ce8d02cef829211)

authored by

Robert Scott and committed by
Jon
9673e47e 9b01e41d

+34
+32
pkgs/development/python-modules/fastprogress/default.nix
··· 1 + { stdenv 2 + , buildPythonPackage 3 + , fetchPypi 4 + , numpy 5 + , pytest 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "fastprogress"; 11 + version = "1.0.0"; 12 + disabled = pythonOlder "3.6"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + sha256 = "1zhv37q6jkqd1pfhlkd4yzrc3dg83vyksgzf32mjlhd5sb0qmql9"; 17 + }; 18 + 19 + propagatedBuildInputs = [ numpy ]; 20 + 21 + # no real tests 22 + doCheck = false; 23 + pythonImportsCheck = [ "fastprogress" ]; 24 + 25 + meta = with stdenv.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 + }; 31 + 32 + }
+2
pkgs/top-level/python-packages.nix
··· 1972 1972 1973 1973 fastpbkdf2 = callPackage ../development/python-modules/fastpbkdf2 { }; 1974 1974 1975 + fastprogress = callPackage ../development/python-modules/fastprogress { }; 1976 + 1975 1977 fastrlock = callPackage ../development/python-modules/fastrlock { }; 1976 1978 1977 1979 fasttext = callPackage ../development/python-modules/fasttext { };