mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #233034 from rhendric/rhendric/python311Packages.pydbus
python311Packages.pydbus: disable
This commit is contained in:
commit
d9878024c8
@ -1,9 +1,13 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pygobject3 }:
|
||||
{ lib, buildPythonPackage, fetchPypi, pygobject3, pythonAtLeast }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydbus";
|
||||
version = "0.6.0";
|
||||
|
||||
# Python 3.11 changed the API of the `inspect` module and pydbus was never
|
||||
# updated to adapt; last commit was in 2018.
|
||||
disabled = pythonAtLeast "3.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0b0gipvz7vcfa9ddmwq2jrx16d4apb0hdnl5q4i3h8jlzwp1c1s2";
|
||||
|
Loading…
Reference in New Issue
Block a user