python312Packages.bacpypes: disable

This commit is contained in:
Martin Weinelt 2023-12-09 22:01:53 +01:00
parent a87a8029e0
commit ab8a19b82f
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -3,6 +3,7 @@
, fetchFromGitHub
, wheel
, pytestCheckHook
, pythonAtLeast
, pythonOlder
}:
@ -11,7 +12,8 @@ buildPythonPackage rec {
version = "0.18.6";
format = "setuptools";
disabled = pythonOlder "3.9";
# uses the removed asyncore module
disabled = pythonOlder "3.9" || pythonAtLeast "3.12";
src = fetchFromGitHub {
owner = "JoelBender";