summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2024-05-08 13:08:53 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-10-14 21:34:33 +0100
commit401ba979658cdbef56992259ab512fb8151b70fd (patch)
treebd113b7203f33710d346c67959f1bc62bee943c2
parentcece22198b44d620d3ae2e80c69e45b997781d7a (diff)
gnu: python-lsp-jsonrpc: Update to 1.1.2.
* gnu/packages/python-xyz.scm (python-lsp-jsonrpc): Update to 1.1.2. [build-system]: Use pyproject-build-system. [native-inputs]: Remove python-mock; add python-coverage, python-pycodestyle, python-pyflakes, python-pylint, python-pytest-cov, python-setuptools, python-setuptools-scm, and python-wheel. Change-Id: Ia8fb2c469d96727addfcf88a36fc51f0e6c0efac
-rw-r--r--gnu/packages/python-xyz.scm16
1 files changed, 12 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1f59fd10d5..d94a5f9d05 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8114,17 +8114,25 @@ which can produce feeds in RSS 2.0, RSS 0.91, and Atom formats.")
(define-public python-lsp-jsonrpc
(package
(name "python-lsp-jsonrpc")
- (version "1.0.0")
+ (version "1.1.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-lsp-jsonrpc" version))
(sha256
(base32
- "1gb0fsamxndhplx25v8m0b3k7aknzy454fpa0qsqsqnv6c3igv3v"))))
- (build-system python-build-system)
+ "04n95h0cqnsrdyh1gv0abh2i5ynyrq2wfqpppx9djp7mxr9y9226"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-mock python-pytest))
+ (list python-coverage
+ python-pycodestyle
+ python-pyflakes
+ python-pylint
+ python-pytest
+ python-pytest-cov
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
(propagated-inputs
(list python-ujson))
(home-page "https://github.com/python-lsp/python-lsp-jsonrpc")