Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion pkgs/development/python-modules/pygobject/3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
, meson
, ninja
, pythonOlder
, runCommandLocal
, gnome
, python
}:
Expand Down Expand Up @@ -48,9 +49,17 @@ buildPythonPackage rec {
ncurses
];

depsBuildBuildPropagated = [
glib # TODO: Not sure why it works here, when the proper place is depsHostHostPropagated IMO.
gobject-introspection.setupHook
];

depsHostHostPropagated = [
glib
];

propagatedBuildInputs = [
pycairo
gobject-introspection # e.g. try building: python3Packages.urwid python3Packages.pydbus
];

mesonFlags = [
Expand Down