Merge pull request #131223 from fabaff/bump-gitpython

python3Packages.GitPython: 3.1.18 -> 3.1.19

authored by Sandro and committed by GitHub 3f149700 2bc1f3ea

+5 -4
+5 -4
pkgs/development/python-modules/GitPython/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "GitPython"; 15 - version = "3.1.18"; 16 - disabled = isPy27; # no longer supported 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6e8f05b"; 21 }; 22 23 patches = [ ··· 30 propagatedBuildInputs = [ 31 gitdb 32 ddt 33 - ] ++ lib.optionals (pythonOlder "3.8") [ 34 typing-extensions 35 ]; 36 37 # Tests require a git repo 38 doCheck = false; 39 pythonImportsCheck = [ "git" ]; 40 41 meta = with lib; {
··· 12 13 buildPythonPackage rec { 14 pname = "GitPython"; 15 + version = "3.1.19"; 16 + disabled = isPy27; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "0lqf5plm02aw9zl73kffk7aa4mp4girm3f2yfk27nmmmjsdh7x0q"; 21 }; 22 23 patches = [ ··· 30 propagatedBuildInputs = [ 31 gitdb 32 ddt 33 + ] ++ lib.optionals (pythonOlder "3.10") [ 34 typing-extensions 35 ]; 36 37 # Tests require a git repo 38 doCheck = false; 39 + 40 pythonImportsCheck = [ "git" ]; 41 42 meta = with lib; {