summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-gitlab/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-02-03 09:37:24 +0100
committerGitHub <noreply@github.com>2023-02-03 09:37:24 +0100
commitdbae6eb51edb8afe281e995eff341be07fc43247 (patch)
tree6cdd8a6ebff2cff8a27abff80e1ce5135b388dcb /pkgs/development/python-modules/python-gitlab/default.nix
parent4c7050fb40cc4e8f0f9f2b7e17fa83496b0c3e98 (diff)
parent2f68abde90dcf4736ed7f5c34c3fb5fecbd55db0 (diff)
Merge pull request #214110 from r-ryantm/auto-update/python310Packages.python-gitlab
python310Packages.python-gitlab: 3.12.0 -> 3.13.0
Diffstat (limited to 'pkgs/development/python-modules/python-gitlab/default.nix')
-rw-r--r--pkgs/development/python-modules/python-gitlab/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix
index 6682b57ed7ae..55e11d49d1d1 100644
--- a/pkgs/development/python-modules/python-gitlab/default.nix
+++ b/pkgs/development/python-modules/python-gitlab/default.nix
@@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "python-gitlab";
- version = "3.12.0";
+ version = "3.13.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
- hash = "sha256-VnOQwrk2kNrmLtlzi/nyIfpFwBN4/fiWCJ2/fIoTT70=";
+ hash = "sha256-rVArcrXRE39K831KaK4g/n1sl3j2fL4q7FZveZUFPH0=";
};
propagatedBuildInputs = [
@@ -44,6 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Interact with GitLab API";
homepage = "https://github.com/python-gitlab/python-gitlab";
+ changelog = "https://github.com/python-gitlab/python-gitlab/blob/v${version}/CHANGELOG.md";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ nyanloutre ];
};