{ lib , buildPythonPackage , fetchPypi , nose , coverage , glibcLocales , flake8 }: buildPythonPackage rec { pname = "tqdm"; version = "4.42.1"; src = fetchPypi { inherit pname version; sha256 = "251ee8440dbda126b8dfa8a7c028eb3f13704898caaef7caa699b35e119301e2"; }; 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 ]; }; }