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