mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-gitlab.
* gnu/packages/python-web.scm (python-gitlab): New variable.
This commit is contained in:
parent
63f76ab29e
commit
ad429e0de7
1 changed files with 25 additions and 0 deletions
|
@ -3469,3 +3469,28 @@ (define-public python-translation-finder
|
|||
the source code of a project. It supports many translation file formats and
|
||||
is part of the Weblate translation platform.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-gitlab
|
||||
(package
|
||||
(name "python-gitlab")
|
||||
(version "1.15.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "python-gitlab" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0zl6kz8v8cg1bcy2r78b2snb0lpw0b573gdx2x1ps0nhsh75l4j5"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-requests" ,python-requests)
|
||||
("python-six" ,python-six)))
|
||||
(native-inputs
|
||||
`(("python-httmock" ,python-httmock)
|
||||
("python-mock" ,python-mock)))
|
||||
(home-page
|
||||
"https://github.com/python-gitlab/python-gitlab")
|
||||
(synopsis "Interact with GitLab API")
|
||||
(description "This package provides an extended library for interacting
|
||||
with GitLab instances through their API.")
|
||||
(license license:lgpl3+)))
|
||||
|
|
Loading…
Reference in a new issue