summary refs log tree commit diff
path: root/pkgs/development/python-modules/GitPython
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-05 19:44:31 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-06 08:34:47 +0200
commitd2155d336d4b3cf858b3f5c7e53abe95611ed175 (patch)
tree63201a4089eda75f6108f307ca521538672db415 /pkgs/development/python-modules/GitPython
parent9e59980eb55a178ced688ddf3e0e716d303a7a34 (diff)
downloadnixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.tar
nixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.tar.gz
nixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.tar.bz2
nixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.tar.lz
nixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.tar.xz
nixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.tar.zst
nixpkgs-d2155d336d4b3cf858b3f5c7e53abe95611ed175.zip
python: GitPython: 3.1.2 -> 3.1.3
Diffstat (limited to 'pkgs/development/python-modules/GitPython')
-rw-r--r--pkgs/development/python-modules/GitPython/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/GitPython/default.nix b/pkgs/development/python-modules/GitPython/default.nix
index b5ffacae296..7b39ebb7a39 100644
--- a/pkgs/development/python-modules/GitPython/default.nix
+++ b/pkgs/development/python-modules/GitPython/default.nix
@@ -1,13 +1,13 @@
 { lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:
 
 buildPythonPackage rec {
-  version = "3.1.2";
+  version = "3.1.3";
   pname = "GitPython";
   disabled = isPy27; # no longer supported
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "864a47472548f3ba716ca202e034c1900f197c0fb3a08f641c20c3cafd15ed94";
+    sha256 = "e107af4d873daed64648b4f4beb89f89f0cfbe3ef558fc7821ed2331c2f8da1a";
   };
 
   patches = [