about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManuel Frischknecht <manuel.frischknecht@gmail.com>2024-01-30 18:23:16 +0000
committerMaxine Aubrey <max@ine.dev>2024-03-15 20:17:09 +0100
commit78afe0b7ef9e1828199920a9877c3b9baf6851aa (patch)
treec8908b0df20d6b0b2615f3078be242fa36e1728b
parent6bea063d09c7ff3b1524cf39289e943a8f1d6d1d (diff)
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
-rw-r--r--pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix b/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix
index 78ff97b1ae1fb..65d3e07e2dc48 100644
--- a/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix
+++ b/pkgs/desktops/gnome/misc/gnome-extensions-cli/default.nix
@@ -3,24 +3,24 @@
 , buildPythonApplication
 , poetry-core
 , colorama
-, more-itertools
 , packaging
 , pydantic
 , requests
 , pygobject3
+, tqdm
 , gobject-introspection
 , wrapGAppsNoGuiHook
 }:
 
 buildPythonApplication rec {
   pname = "gnome-extensions-cli";
-  version = "0.9.5";
+  version = "0.10.1";
   format = "pyproject";
 
   src = fetchPypi {
     pname = "gnome_extensions_cli";
     inherit version;
-    hash = "sha256-4eRVmG5lqK8ql9WpvXsf18znOt7kDSnpQnLfy73doy4=";
+    hash = "sha256-yAoo3NjNtTZSHmbLKzW2X7Cy2smLNp8/9vo+OPGxlVY=";
   };
 
   nativeBuildInputs = [
@@ -31,11 +31,11 @@ buildPythonApplication rec {
 
   propagatedBuildInputs = [
     colorama
-    more-itertools
     packaging
     pydantic
     requests
     pygobject3
+    tqdm
   ];
 
   pythonImportsCheck = [