python312Packages.mockupdb: disable

This commit is contained in:
Martin Weinelt 2024-06-19 19:35:52 +02:00
parent 13b2da0b1a
commit c9048c944b

View File

@ -3,6 +3,7 @@
buildPythonPackage,
fetchPypi,
pymongo,
pythonAtLeast,
pythonOlder,
pytestCheckHook,
}:
@ -12,7 +13,8 @@ buildPythonPackage rec {
version = "1.8.1";
format = "setuptools";
disabled = pythonOlder "3.9";
# use the removed ssl.wrap_socket function
disabled = pythonOlder "3.9" || pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;