about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-13 15:05:57 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-20 20:46:24 +0100
commitc3146aa96a616fc1dbb2523a3bb1480be1d26dd6 (patch)
treea024ac3f51ed831857e389a0dc67f29c2dd7be7a
parentfd4901e0347c3214f59e561e7ac951421ad26648 (diff)
python312Packages.tqdm: disable
-rw-r--r--pkgs/development/python-modules/tqdm/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix
index 640e62212081f..6cf4c9713f9e4 100644
--- a/pkgs/development/python-modules/tqdm/default.nix
+++ b/pkgs/development/python-modules/tqdm/default.nix
@@ -2,6 +2,7 @@
 , stdenv
 , buildPythonPackage
 , fetchPypi
+, pythonAtLeast
 , setuptools
 , setuptools-scm
 , wheel
@@ -19,6 +20,9 @@ buildPythonPackage rec {
   version = "4.66.1";
   format = "pyproject";
 
+  # https://github.com/tqdm/tqdm/issues/1537
+  disabled = pythonAtLeast "3.12";
+
   src = fetchPypi {
     inherit pname version;
     hash = "sha256-2I5lH5242FUaYlVtPP+eMDQnTKXWbpMZfPJJDi3Lacc=";