guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#42297] [PATCH 04/10] gnu: Add python-hglib.


From: Alexandru-Sergiu Marton
Subject: [bug#42297] [PATCH 04/10] gnu: Add python-hglib.
Date: Thu, 9 Jul 2020 22:19:12 +0300

* gnu/packages/python-xyz.scm (python-hglib): New variable.
---
 gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5ce34cd738..c97f2bf331 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20505,3 +20505,29 @@ For the most part it's transliterated from C, the 
major differences are:
      "The MinIO Python Client SDK provides simple APIs to access any Amazon S3
 compatible object storage server.")
     (license license:asl2.0)))
+
+(define-public python-hglib
+  (package
+    (name "python-hglib")
+    (version "2.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "python-hglib" version))
+       (sha256
+        (base32
+         "1cm3din9j2xbgipnay5kgzlj6imsrs3lgc09hkndcb9k9p5s07vw"))))
+    (build-system python-build-system)
+    (arguments
+     ;; FIXME: Fails a lot of tests
+     `(#:tests? #f))
+    (propagated-inputs
+     `(("mercurial" ,mercurial)))
+    (native-inputs
+     `(("python-nose" ,python-nose)))
+    (home-page
+     "https://www.mercurial-scm.org/wiki/PythonHglib";)
+    (synopsis "Mercurial Python library")
+    (description "A Python library for interfacing with Mercurial's
+CommandServer.")
+    (license license:expat)))
-- 
2.27.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]