summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-02-18 00:56:19 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-18 00:56:19 +0100
commit4244d7e3e40e85576c4e0b1df997cbb567c8f9cc (patch)
tree8923fbff8dd6be26fcb88330391e771e2f9f1a42 /gnu
parentdfab9ce6e0cc45b76754f9f1bef9a78a12231dc2 (diff)
gnu: python-pygit2: Disinherit from python-pygit2-1.11,
* gnu/packages/python-xyz.scm: Do not inherit from python-pygit2-1.11, but copy-paste fields. Change-Id: I98616f5ce9705869223215c6946837e7997feb9f
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a96cfa7f773..0ca752b6e37 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11472,7 +11472,7 @@ readable format.")
(license license:gpl2)))
(define-public python-pygit2
- (package/inherit python-pygit2-1.11
+ (package
(name "python-pygit2")
(version "1.18.2")
(source
@@ -11481,7 +11481,14 @@ readable format.")
(uri (pypi-uri "pygit2" version))
(sha256
(base32 "0m8g8s72c0xwwayykpj1hf8c1wldhmg1sj8kgxdp2rf9c837xa7c"))))
- (propagated-inputs (list python-cffi libgit2))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-cffi libgit2))
+ (native-inputs (list python-pytest python-setuptools python-wheel))
+ (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.")
+ ;; GPL2.0 only, with linking exception.
+ (license license:gpl2)))
(define-public python-patiencediff
(package