Skip to content
Snippets Groups Projects
Unverified Commit 0151a8df authored by nikita's avatar nikita Committed by Leo Famulari
Browse files

gnu: Add python-pygit2.


* gnu/packages/python.scm (python-pygit2, python2-pygit2): New variables.

Signed-off-by: default avatarLeo Famulari <leo@famulari.name>
parent 460fccd4
No related branches found
No related tags found
No related merge requests found
...@@ -3465,6 +3465,33 @@ (define-public python-numpy ...@@ -3465,6 +3465,33 @@ (define-public python-numpy
(define-public python2-numpy (define-public python2-numpy
(package-with-python2 python-numpy)) (package-with-python2 python-numpy))
(define-public python-pygit2
(package
(name "python-pygit2")
(version "0.24.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pygit2" version))
(sha256
(base32
"0shnafv9zc483wmcr4fzgvirg1qzz42xpdqd4a3ad39sdj1qbbia"))))
(build-system python-build-system)
(propagated-inputs
`(("python-six" ,python-six)
("python-cffi" ,python-cffi)
("libgit2" ,libgit2)
("python-tox" ,python-tox)))
(home-page "https://github.com/libgit2/pygit2")
(synopsis "Python bindings for libgit2")
(description "Pygit2 is a set of Python bindings to the libgit2 shared
library, libgit2 implements Git plumbing.")
;; GPL2.0 only, with linking exception.
(license license:gpl2)))
(define-public python2-pygit2
(package-with-python2 python-pygit2))
(define-public python-pyparsing (define-public python-pyparsing
(package (package
(name "python-pyparsing") (name "python-pyparsing")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment