[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/18: gnu: python-pygit2: Update to 1.9.2 and enable tests.
From: |
guix-commits |
Subject: |
17/18: gnu: python-pygit2: Update to 1.9.2 and enable tests. |
Date: |
Tue, 7 Jun 2022 09:18:40 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit e3d2650726e0345b52649558d9319da3e6a8898a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Jun 6 21:43:58 2022 -0400
gnu: python-pygit2: Update to 1.9.2 and enable tests.
* gnu/packages/python-xyz.scm (python-pygit2): Update to 1.9.2.
[tests?]: Delete argument.
[phases]{check}: New phase override.
[description]: Fix sentence.
---
gnu/packages/python-xyz.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 508753fd50..f58510ae8c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5662,24 +5662,27 @@ readable format.")
(define-public python-pygit2
(package
(name "python-pygit2")
- (version "1.9.1")
+ (version "1.9.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pygit2" version))
(sha256
- (base32 "1jdr6z1il03nifwgpcdf95w6xzzbfzdkcqq5dcqjaa0rnv1pjr7g"))))
+ (base32 "068bwhirigbh2435abyv4shdxgxvyfqf4dxfmhd4hihivwrl9290"))))
(build-system python-build-system)
(arguments
- '(#:tests? #f)) ; tests don't run correctly in our environment
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-v")))))))
(propagated-inputs
(list python-cached-property python-cffi libgit2))
(native-inputs
(list python-pytest))
(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.")
+ (description "Pygit2 is a set of Python bindings to the libgit2 shared
library.")
;; GPL2.0 only, with linking exception.
(license license:gpl2)))
- 06/18: gnu: python-flask-combo-jsonapi: Skip failing test., (continued)
- 06/18: gnu: python-flask-combo-jsonapi: Skip failing test., guix-commits, 2022/06/07
- 07/18: gnu: python-flask-restx: Skip networking dependent test., guix-commits, 2022/06/07
- 10/18: gnu: python-trezor: Add python-hidapi optional dependency., guix-commits, 2022/06/07
- 09/18: gnu: python-trezor-agent: Delete trailing #t and honor TESTS?., guix-commits, 2022/06/07
- 11/18: gnu: trezor-agent: Update to 0.14.4., guix-commits, 2022/06/07
- 12/18: gnu: electron-cash: Update to 4.2.10., guix-commits, 2022/06/07
- 13/18: gnu: electron-cash: Apply new style to inputs and use gexps., guix-commits, 2022/06/07
- 14/18: gnu: nikola: Update to 8.2.2., guix-commits, 2022/06/07
- 15/18: gnu: python-xunitparser: Update to 1.3.4., guix-commits, 2022/06/07
- 16/18: gnu: python-pygmsh: Update to 7.1.17., guix-commits, 2022/06/07
- 17/18: gnu: python-pygit2: Update to 1.9.2 and enable tests.,
guix-commits <=