summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-19 19:15:28 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-19 21:21:25 +0100
commitbd252e136a84cbab3b84184ac237976af3b0f950 (patch)
tree1534294f57cbec5871aa6a48aaa423dc1a205333
parent2853d37e45101107870f9c8325fdd9b85a9df8e9 (diff)
gnu: python-hissp: Update to 0.5.0.
* gnu/packages/python-xyz.scm (python-hissp): Update to 0.5.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:test-backend>: Set it. [native-inputs]: Add python-hypothesis, python-setuptools. [description]: Improve style. Change-Id: I8262a093a32777003deda3eefb8704c1eff5cc73 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm23
1 files changed, 14 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fe839e6e73c..880993cc6fc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20251,20 +20251,25 @@ Python at your fingertips, in Lisp form.")
(define-public python-hissp
(package
(name "python-hissp")
- (version "0.2.0")
+ (version "0.5.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "hissp" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gilch/hissp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "0yns7f0q699zn2ziagyas2nkndl7mp1hhssv9x9mpl7jxj2p5myw"))))
- (build-system python-build-system)
+ (base32 "03lxna935c0qs3lppb2xrvvgh0dkwz8lh5pmgqrmpddin1kxyjri"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:test-backend #~'unittest))
+ (native-inputs (list python-hypothesis python-setuptools))
(home-page "https://github.com/gilch/hissp")
(synopsis "It's Python with a Lissp")
- (description "Hissp is a modular Lisp implementation that compiles to a
-functional subset of Python—Syntactic macro metaprogramming with full access
-to the Python ecosystem.")
+ (description
+ "Hissp is a modular Lisp implementation that compiles to a functional
+subset of Python—Syntactic macro metaprogramming with full access to the
+Python ecosystem.")
(license license:asl2.0)))
(define-public python-promise