python3Packages.tqdm: 4.58.0 -> 4.60.0

This commit is contained in:
Drew Risinger 2021-04-16 10:18:32 -04:00
parent 7124e24a47
commit 52c35767ae

View file

@ -14,11 +14,11 @@
buildPythonPackage rec {
pname = "tqdm";
version = "4.58.0";
version = "4.60.0";
src = fetchPypi {
inherit pname version;
sha256 = "1fjvaag1wy70gglxjkfnn0acrya7fbhzi4adbs1bpap8x03wffn2";
sha256 = "ebdebdb95e3477ceea267decfc0784859aa3df3e27e22d23b83e9b272bf157ae";
};
nativeBuildInputs = [
@ -39,14 +39,19 @@ buildPythonPackage rec {
# Remove performance testing.
# Too sensitive for on Hydra.
PYTEST_ADDOPTS = "-k \"not perf\"";
disabledTests = [
"perf"
];
LC_ALL="en_US.UTF-8";
meta = {
pythonImportsCheck = [ "tqdm" ];
meta = with lib; {
description = "A Fast, Extensible Progress Meter";
homepage = "https://github.com/tqdm/tqdm";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fridh ];
changelog = "https://tqdm.github.io/releases/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fridh ];
};
}