mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
Merge pull request #119623 from drewrisinger/dr-pr-tqdm-bump
python3Packages.tqdm: 4.58.0 -> 4.60.0
This commit is contained in:
commit
8019e661ab
@ -14,11 +14,11 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tqdm";
|
pname = "tqdm";
|
||||||
version = "4.58.0";
|
version = "4.60.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1fjvaag1wy70gglxjkfnn0acrya7fbhzi4adbs1bpap8x03wffn2";
|
sha256 = "ebdebdb95e3477ceea267decfc0784859aa3df3e27e22d23b83e9b272bf157ae";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -39,14 +39,19 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
# Remove performance testing.
|
# Remove performance testing.
|
||||||
# Too sensitive for on Hydra.
|
# Too sensitive for on Hydra.
|
||||||
PYTEST_ADDOPTS = "-k \"not perf\"";
|
disabledTests = [
|
||||||
|
"perf"
|
||||||
|
];
|
||||||
|
|
||||||
LC_ALL="en_US.UTF-8";
|
LC_ALL="en_US.UTF-8";
|
||||||
|
|
||||||
meta = {
|
pythonImportsCheck = [ "tqdm" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "A Fast, Extensible Progress Meter";
|
description = "A Fast, Extensible Progress Meter";
|
||||||
homepage = "https://github.com/tqdm/tqdm";
|
homepage = "https://github.com/tqdm/tqdm";
|
||||||
license = with lib.licenses; [ mit ];
|
changelog = "https://tqdm.github.io/releases/";
|
||||||
maintainers = with lib.maintainers; [ fridh ];
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fridh ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user