summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gitpython
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-17 00:35:26 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-03 23:57:08 +0100
commit1eb1de155df0e6a63eea3723534475d4c498068f (patch)
tree7e9421313b47f5f4de4d9f5a3d364e823c23cc35 /pkgs/development/python-modules/gitpython
parent5f6f34ea8764a0f36deaad3bce6924f1a0ee607c (diff)
python310Packages.gitpython: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/gitpython')
-rw-r--r--pkgs/development/python-modules/gitpython/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/gitpython/default.nix b/pkgs/development/python-modules/gitpython/default.nix
index 1e87b1a5958d..0915170bc7f6 100644
--- a/pkgs/development/python-modules/gitpython/default.nix
+++ b/pkgs/development/python-modules/gitpython/default.nix
@@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "gitpython-developers";
repo = "GitPython";
- rev = version;
+ rev = "refs/tags/${version}";
hash = "sha256-lpx/vptFhz4WOkybJpqq1teMGgX6RQo/f2OTNEm5XJU=";
};
@@ -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 ];
};