about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-08 02:42:19 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-12 18:24:51 +0100
commit65dc0c2a24f9fee7382bff11656e7f14e31d1a3a (patch)
treebde73ffd641006e43a1617f16f966529c084e5b9 /pkgs
parent14a57e634cf71538ff926bddf6d98323176cc5f5 (diff)
python3Packages.rich-pixels: 2.2.0 -> 3.0.0
https://github.com/darrenburns/rich-pixels/releases/tag/refs/tags/3.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/rich-pixels/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/rich-pixels/default.nix b/pkgs/development/python-modules/rich-pixels/default.nix
index 7b77e59b6c9fa..8b97f1320c49c 100644
--- a/pkgs/development/python-modules/rich-pixels/default.nix
+++ b/pkgs/development/python-modules/rich-pixels/default.nix
@@ -12,14 +12,14 @@
 
 buildPythonPackage rec {
   pname = "rich-pixels";
-  version = "2.2.0";
+  version = "3.0.0";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "darrenburns";
     repo = "rich-pixels";
-    rev = version;
-    hash = "sha256-fbpnHEfBPWLSYhgETqKbdmmzt7Lu/4oKgetjgNvv04c=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-73CEtK/p4JVOtJgP7CNyee9vEJXaxaAj/kHjWIGETeQ=";
   };
 
   patches = [