summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/gitpython
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-04 01:42:06 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-03-04 01:42:06 +0000
commitd0286ecd24f6da3f220ec848763ab3fcd262369d (patch)
tree7c8ea640da4318dc2dd126dcb33e5dc7ef50335a /pkgs/development/python-modules/gitpython
parenta52e4232ce75ba5567be618c1757f8d8584a7061 (diff)
parentfe71770e828197b0f8581ea5d604abe7b82dc762 (diff)
Merge remote-tracking branch 'origin/staging' into staging-next
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 ];
};