python312Packages.tqdm: enable without tests

This package blocks too many others, and the tests might just be racy
after all.
This commit is contained in:
Martin Weinelt 2024-02-07 15:06:52 +01:00
parent 03dd2b9470
commit 4a6e0a2048
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,7 +2,7 @@
, stdenv
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, pythonOlder
, setuptools
, setuptools-scm
, wheel
@ -20,9 +20,6 @@ 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=";
@ -34,6 +31,9 @@ buildPythonPackage rec {
wheel
];
# https://github.com/tqdm/tqdm/issues/1537
doCheck = pythonOlder "3.12";
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio