1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add python-nrepl.

* gnu/packages/python-xyz.scm (python-nrepl): New variable.

Merges: https://codeberg.org/guix/guix/pulls/7208
Change-Id: Ia82ea5542a95c912ef582f3adacb6249c376e549
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2026-03-16 10:43:26 +01:00
committed by Sharlatan Hellseher
parent 60919f0bfe
commit e9b94ef3d2

View File

@@ -1853,6 +1853,40 @@ packages.")
processes, in parallel, in the console, with an interactive TUI.")
(license license:expat)))
(define-public python-nrepl
(package
(name "python-nrepl")
(version "0.3.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.sr.ht/~ngraves/nrepl-python")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1ns8c5d29vi11qma1nnazsja5nibknp97ig0lg45wfpjbb5ngl2b"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
#~(list "--numprocesses" (number->string (parallel-job-count)))))
(native-inputs
(list python-flit-core
python-pytest
python-pytest-asyncio
python-pytest-xdist))
(propagated-inputs
(list python-fastbencode
python-gevent
python-ipython))
(home-page "https://git.sr.ht/~ngraves/nrepl-python")
(synopsis "NREPL server for Python")
(description
"This package provides an implementation of the @url{https://nrepl.org,
NREPL} protocol for Python.")
(license license:gpl3+)))
(define-public python-num2words
(package
(name "python-num2words")