gnu: python-pygit2: Update to 1.1.0.
* gnu/packages/python-xyz.scm (python-pygit2): Update to 1.1.0. [propagated-inputs]: Remove PYTHON-SIX and PYTHON-TOX. Add PYTHON-CACHED-PROPERTY. (python2-pygit2): Remove variable (Python 2 is no longer supported).
This commit is contained in:
parent
5358950259
commit
7154f5ef4b
1 changed files with 4 additions and 8 deletions
|
@ -3783,21 +3783,20 @@ color scales, and color space conversion easy. It has support for:
|
||||||
(define-public python-pygit2
|
(define-public python-pygit2
|
||||||
(package
|
(package
|
||||||
(name "python-pygit2")
|
(name "python-pygit2")
|
||||||
(version "0.28.2")
|
(version "1.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pygit2" version))
|
(uri (pypi-uri "pygit2" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "11kzj5mjkspvplnpdb6bj8dcj6rgmkk986k8hjcklyg5yaxkz32d"))))
|
(base32 "1hs0pqqzn1yjxqk86nq7p0lvsklwnlyi5xwyzr7d5nrs19dmsjbg"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f)) ; tests don't run correctly in our environment
|
'(#:tests? #f)) ; tests don't run correctly in our environment
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-six" ,python-six)
|
`(("python-cached-property" ,python-cached-property)
|
||||||
("python-cffi" ,python-cffi)
|
("python-cffi" ,python-cffi)
|
||||||
("libgit2" ,libgit2)
|
("libgit2" ,libgit2)))
|
||||||
("python-tox" ,python-tox)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)))
|
`(("python-pytest" ,python-pytest)))
|
||||||
(home-page "https://github.com/libgit2/pygit2")
|
(home-page "https://github.com/libgit2/pygit2")
|
||||||
|
@ -3807,9 +3806,6 @@ library, libgit2 implements Git plumbing.")
|
||||||
;; GPL2.0 only, with linking exception.
|
;; GPL2.0 only, with linking exception.
|
||||||
(license license:gpl2)))
|
(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")
|
||||||
|
|
Reference in a new issue