nixpkgs/pkgs/development/python-modules/tqdm/default.nix
2020-08-04 21:54:27 +02:00

40 lines
791 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, nose
, coverage
, glibcLocales
, flake8
}:
buildPythonPackage rec {
pname = "tqdm";
version = "4.48.0";
src = fetchPypi {
inherit pname version;
sha256 = "6baa75a88582b1db6d34ce4690da5501d2a1cb65c34664840a456b2c9f794d29";
};
checkInputs = [ nose coverage glibcLocales flake8 ];
postPatch = ''
# Remove performance testing.
# Too sensitive for on Hydra.
rm tqdm/tests/tests_perf.py
'';
LC_ALL="en_US.UTF-8";
# doCheck = !stdenv.isDarwin;
# Test suite is too big and slow.
doCheck = false;
meta = {
description = "A Fast, Extensible Progress Meter";
homepage = "https://github.com/tqdm/tqdm";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fridh ];
};
}