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