summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gitpython
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-03-15 17:35:39 +0100
committerVladimír Čunát <v@cunat.cz>2023-03-15 17:35:39 +0100
commita86610144f60e8a54f12a75f2ca0ad62e2a5b7fa (patch)
treecaa105ad817423bfecfd033ba278371a91760cbf /pkgs/development/python-modules/gitpython
parentc34e72182fa2a19a471014b849430b84fdedfb3d (diff)
parent1c52b361a85d4f9e139d5b54fc21df2e1e012285 (diff)
Merge #219444: staging-next 2023-03-04
Diffstat (limited to 'pkgs/development/python-modules/gitpython')
-rw-r--r--pkgs/development/python-modules/gitpython/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/gitpython/default.nix b/pkgs/development/python-modules/gitpython/default.nix
index e5a98bb27d22..0915170bc7f6 100644
--- a/pkgs/development/python-modules/gitpython/default.nix
+++ b/pkgs/development/python-modules/gitpython/default.nix
@@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "gitpython";
- version = "3.1.30";
+ version = "3.1.31";
format = "setuptools";
disabled = pythonOlder "3.7";
@@ -19,8 +19,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "gitpython-developers";
repo = "GitPython";
- rev = version;
- hash = "sha256-odtYBQLscncdC+NbDC9D84QQveDoimkQ6RzUQLJgizI=";
+ rev = "refs/tags/${version}";
+ hash = "sha256-lpx/vptFhz4WOkybJpqq1teMGgX6RQo/f2OTNEm5XJU=";
};
propagatedBuildInputs = [
@@ -46,6 +46,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python Git Library";
homepage = "https://github.com/gitpython-developers/GitPython";
+ changelog = "https://github.com/gitpython-developers/GitPython/blob/${version}/doc/source/changes.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};