2017-05-01 06:06:38 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, nose
|
|
|
|
, coverage
|
|
|
|
, glibcLocales
|
|
|
|
, flake8
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tqdm";
|
2020-02-06 10:20:42 +01:00
|
|
|
version = "4.42.1";
|
2017-05-01 06:06:38 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-06 10:20:42 +01:00
|
|
|
sha256 = "251ee8440dbda126b8dfa8a7c028eb3f13704898caaef7caa699b35e119301e2";
|
2017-05-01 06:06:38 +02:00
|
|
|
};
|
|
|
|
|
2019-12-16 01:20:19 +01:00
|
|
|
checkInputs = [ nose coverage glibcLocales flake8 ];
|
2017-05-01 06:06:38 +02:00
|
|
|
|
2017-11-25 08:49:32 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Remove performance testing.
|
|
|
|
# Too sensitive for on Hydra.
|
|
|
|
rm tqdm/tests/tests_perf.py
|
|
|
|
'';
|
|
|
|
|
2017-05-01 06:06:38 +02:00
|
|
|
LC_ALL="en_US.UTF-8";
|
|
|
|
|
2019-02-14 08:37:31 +01:00
|
|
|
# doCheck = !stdenv.isDarwin;
|
|
|
|
# Test suite is too big and slow.
|
|
|
|
doCheck = false;
|
2018-08-17 04:10:19 +02:00
|
|
|
|
2017-05-01 06:06:38 +02:00
|
|
|
meta = {
|
|
|
|
description = "A Fast, Extensible Progress Meter";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/tqdm/tqdm";
|
2017-05-01 06:06:38 +02:00
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
|
|
};
|
|
|
|
}
|