gnome-extensions-cli: fix build
This commit is contained in:
parent
8e08b46df9
commit
1dbf8a8c16
1 changed files with 8 additions and 2 deletions
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue