aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix
index c83f6159fde8..5df20826dc76 100644
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix
+++ b/infra/libkookie/nixpkgs/pkgs/development/python-modules/tqdm/default.nix
@@ -5,30 +5,30 @@
, coverage
, glibcLocales
, flake8
+, setuptools_scm
+, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tqdm";
- version = "4.48.2";
+ version = "4.54.0";
src = fetchPypi {
inherit pname version;
- sha256 = "564d632ea2b9cb52979f7956e093e831c28d441c11751682f84c86fc46e4fd21";
+ sha256 = "5c0d04e06ccc0da1bd3fa5ae4550effcce42fcad947b4a6cafa77bdc9b09ff22";
};
- checkInputs = [ nose coverage glibcLocales flake8 ];
+ nativeBuildInputs = [
+ setuptools_scm
+ ];
- postPatch = ''
- # Remove performance testing.
- # Too sensitive for on Hydra.
- rm tqdm/tests/tests_perf.py
- '';
+ checkInputs = [ nose coverage glibcLocales flake8 pytestCheckHook ];
- LC_ALL="en_US.UTF-8";
+ # Remove performance testing.
+ # Too sensitive for on Hydra.
+ PYTEST_ADDOPTS = "-k \"not perf\"";
-# doCheck = !stdenv.isDarwin;
- # Test suite is too big and slow.
- doCheck = false;
+ LC_ALL="en_US.UTF-8";
meta = {
description = "A Fast, Extensible Progress Meter";