python312Packages.mockupdb: disable

This commit is contained in:
Martin Weinelt
2024-06-24 12:18:23 +02:00
parent 13b2da0b1a
commit c9048c944b
@@ -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;