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:
parent
03dd2b9470
commit
4a6e0a2048
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user