gnome-extensions-cli: 0.9.5 -> 0.10.1

The `gnome-extensions-cli` uses other packaged Python dependencies
and failing to build because the packaged versions of `more-itertools`
and `pydantic` are newer than what the project's dependency constraints
allow for.

Upgrading the package to the newest version fixes the build.

https://github.com/essembeh/gnome-extensions-cli/compare/0.9.5...0.10.1
This commit is contained in:
Manuel Frischknecht 2024-01-30 18:23:16 +00:00 committed by Maxine Aubrey
parent 6bea063d09
commit 78afe0b7ef
No known key found for this signature in database
GPG key ID: F6FE033DFCB899F7

View file

@ -3,24 +3,24 @@
, buildPythonApplication , buildPythonApplication
, poetry-core , poetry-core
, colorama , colorama
, more-itertools
, packaging , packaging
, pydantic , pydantic
, requests , requests
, pygobject3 , pygobject3
, tqdm
, gobject-introspection , gobject-introspection
, wrapGAppsNoGuiHook , wrapGAppsNoGuiHook
}: }:
buildPythonApplication rec { buildPythonApplication rec {
pname = "gnome-extensions-cli"; pname = "gnome-extensions-cli";
version = "0.9.5"; version = "0.10.1";
format = "pyproject"; format = "pyproject";
src = fetchPypi { src = fetchPypi {
pname = "gnome_extensions_cli"; pname = "gnome_extensions_cli";
inherit version; inherit version;
hash = "sha256-4eRVmG5lqK8ql9WpvXsf18znOt7kDSnpQnLfy73doy4="; hash = "sha256-yAoo3NjNtTZSHmbLKzW2X7Cy2smLNp8/9vo+OPGxlVY=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -31,11 +31,11 @@ buildPythonApplication rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
colorama colorama
more-itertools
packaging packaging
pydantic pydantic
requests requests
pygobject3 pygobject3
tqdm
]; ];
pythonImportsCheck = [ pythonImportsCheck = [