about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-review
diff options
context:
space:
mode:
authorLeah Ives <585296+packetizeme@users.noreply.github.com>2021-04-09 15:10:02 -0700
committerLeah Ives <leah@packetize.me>2021-04-10 19:59:31 -0700
commitf9cc32641f0ff6c7692c6cbe5cd51351da84daeb (patch)
tree975c0bb223edf226aa54ace11cc74c71306df3ab /pkgs/applications/version-management/git-review
parentc1c617ff8dcb42c05e4e8a20ddc0dde1a50b3dd3 (diff)
downloadnixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.tar
nixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.tar.gz
nixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.tar.bz2
nixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.tar.lz
nixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.tar.xz
nixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.tar.zst
nixlib-f9cc32641f0ff6c7692c6cbe5cd51351da84daeb.zip
git-review: 1.28.0 -> 2.0.0
* Updates git-review to latest version
* Fixes build error due to dependency on old version of six library
Diffstat (limited to 'pkgs/applications/version-management/git-review')
-rw-r--r--pkgs/applications/version-management/git-review/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/git-review/default.nix b/pkgs/applications/version-management/git-review/default.nix
index d0bbca15ea17..042bdc2a19d7 100644
--- a/pkgs/applications/version-management/git-review/default.nix
+++ b/pkgs/applications/version-management/git-review/default.nix
@@ -2,7 +2,7 @@
 
 buildPythonApplication rec {
   pname = "git-review";
-  version = "1.28.0";
+  version = "2.0.0";
 
   # Manually set version because prb wants to get it from the git
   # upstream repository (and we are installing from tarball instead)
@@ -10,7 +10,7 @@ buildPythonApplication rec {
 
   src = fetchurl {
     url = "https://opendev.org/opendev/${pname}/archive/${version}.tar.gz";
-    sha256 = "1y1jzb0hlprynwwr4q5y4x06641qrhj0k69mclabnmhfam9g8ygm";
+    sha256 = "0dkyd5g2xmvsa114is3cd9qmki3hi6c06wjnra0f4xq3aqm0ajnj";
   };
 
   propagatedBuildInputs = [ pbr requests setuptools ];