Unverified Commit dbae6eb5 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #214110 from r-ryantm/auto-update/python310Packages.python-gitlab

python310Packages.python-gitlab: 3.12.0 -> 3.13.0
parents 4c7050fb 2f68abde
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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 ];
  };