python312Packages.dbus-python: disable

This commit is contained in:
Martin Weinelt 2023-12-14 00:59:47 +01:00
parent a553aac523
commit a507e49348
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,11 +1,12 @@
{ lib, stdenv, fetchPypi, buildPythonPackage, python, pkg-config, dbus, dbus-glib, isPyPy
, ncurses, pygobject3, isPy3k }:
, ncurses, pygobject3, isPy3k, pythonAtLeast }:
buildPythonPackage rec {
pname = "dbus-python";
version = "1.2.18";
disabled = isPyPy;
# ModuleNotFoundError: No module named 'distutils'
disabled = isPyPy || pythonAtLeast "3.12";
format = "other";
outputs = [ "out" "dev" ];