···11-{ lib, buildPythonPackage, fetchPypi, pygobject3 }:11+{ lib, buildPythonPackage, fetchPypi, pygobject3, pythonAtLeast }:2233buildPythonPackage rec {44 pname = "pydbus";55 version = "0.6.0";66+77+ # Python 3.11 changed the API of the `inspect` module and pydbus was never88+ # updated to adapt; last commit was in 2018.99+ disabled = pythonAtLeast "3.11";610711 src = fetchPypi {812 inherit pname version;