diff options
| author | Sandro <sandro.jaeckel@gmail.com> | 2021-07-24 20:43:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-24 20:43:16 +0000 |
| commit | 3f149700822fbb899a3632cdced4572b18452be0 (patch) | |
| tree | f79e02cadb3973ea91abce029daec7934f19401a /pkgs/development/python-modules/GitPython | |
| parent | 2bc1f3ea607ef94f7daf13732e497532d7bda239 (diff) | |
| parent | 00f50b6164fc9a1216d1e2008d5b2bfc2bee5fe3 (diff) | |
Merge pull request #131223 from fabaff/bump-gitpython
python3Packages.GitPython: 3.1.18 -> 3.1.19
Diffstat (limited to 'pkgs/development/python-modules/GitPython')
| -rw-r--r-- | pkgs/development/python-modules/GitPython/default.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/GitPython/default.nix b/pkgs/development/python-modules/GitPython/default.nix index eda574e69cb8..bd3084ae91b5 100644 --- a/pkgs/development/python-modules/GitPython/default.nix +++ b/pkgs/development/python-modules/GitPython/default.nix @@ -12,12 +12,12 @@ buildPythonPackage rec { pname = "GitPython"; - version = "3.1.18"; - disabled = isPy27; # no longer supported + version = "3.1.19"; + disabled = isPy27; src = fetchPypi { inherit pname version; - sha256 = "b838a895977b45ab6f0cc926a9045c8d1c44e2b653c1fcc39fe91f42c6e8f05b"; + sha256 = "0lqf5plm02aw9zl73kffk7aa4mp4girm3f2yfk27nmmmjsdh7x0q"; }; patches = [ @@ -30,12 +30,13 @@ buildPythonPackage rec { propagatedBuildInputs = [ gitdb ddt - ] ++ lib.optionals (pythonOlder "3.8") [ + ] ++ lib.optionals (pythonOlder "3.10") [ typing-extensions ]; # Tests require a git repo doCheck = false; + pythonImportsCheck = [ "git" ]; meta = with lib; { |
