python3Packages.GitPython: 3.1.0 -> 3.1.2

This commit is contained in:
Frederik Rietdijk 2020-05-09 12:01:42 +02:00
parent b45c501882
commit 36c98565df
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, substituteAll, git, gitdb, mock, nose, ddt }:
buildPythonPackage rec {
version = "3.1.0";
version = "3.1.2";
pname = "GitPython";
disabled = isPy27; # no longer supported
src = fetchPypi {
inherit pname version;
sha256 = "1jzllsy9lwc9yibccgv7h9naxisazx2n3zmpy21c8n5xhysw69p4";
sha256 = "864a47472548f3ba716ca202e034c1900f197c0fb3a08f641c20c3cafd15ed94";
};
patches = [