gnome-extensions-cli: fix build

This commit is contained in:
Martin Weinelt 2024-03-12 03:02:24 +01:00
parent 8e08b46df9
commit 1dbf8a8c16

View file

@ -1,11 +1,12 @@
{ lib { lib
, fetchPypi , fetchPypi
, buildPythonApplication , buildPythonApplication
, pythonRelaxDepsHook
, poetry-core , poetry-core
, colorama , colorama
, more-itertools , more-itertools
, packaging , packaging
, pydantic , pydantic_1
, requests , requests
, pygobject3 , pygobject3
, gobject-introspection , gobject-introspection
@ -27,13 +28,18 @@ buildPythonApplication rec {
gobject-introspection gobject-introspection
poetry-core poetry-core
wrapGAppsNoGuiHook wrapGAppsNoGuiHook
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"more-itertools"
]; ];
propagatedBuildInputs = [ propagatedBuildInputs = [
colorama colorama
more-itertools more-itertools
packaging packaging
pydantic pydantic_1
requests requests
pygobject3 pygobject3
]; ];