summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/GitPython
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-06-10 16:15:47 +0200
committerVladimír Čunát <v@cunat.cz>2020-06-10 16:18:40 +0200
commit34d58cb8396b5e031abe4ffbb1b30da8549bf79d (patch)
treeeabd1ac6e61a50ef5ae2efe55ee4592df4d310c4 /pkgs/development/python-modules/GitPython
parentbbe71613b6e656e707acdf9c279736c900bf4e87 (diff)
parent16024fcaecf63efb99aac191ee04af18762570cf (diff)
Merge branch 'staging' into staging-next
This commit has already been partially rebuilt in https://hydra.nixos.org/eval/1592635 In particular, the severe security fix for gnutls is contained.
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 b5ffacae2964..7b39ebb7a390 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 = [