nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python311Packages.pydbus: disable

+5 -1
+5 -1
pkgs/development/python-modules/pydbus/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pygobject3 }: 1 + { lib, buildPythonPackage, fetchPypi, pygobject3, pythonAtLeast }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "pydbus"; 5 5 version = "0.6.0"; 6 + 7 + # Python 3.11 changed the API of the `inspect` module and pydbus was never 8 + # updated to adapt; last commit was in 2018. 9 + disabled = pythonAtLeast "3.11"; 6 10 7 11 src = fetchPypi { 8 12 inherit pname version;