rekado pushed a commit to branch master
in repository guix.
commit 4533972587a615bc3a886e645344d71a512011de
Author: Sou Bunnbu (宋文武) <[email protected]>
AuthorDate: Wed Jan 15 11:23:24 2025 +0800
gnu: python-eliot: Update to 1.16.0.
* gnu/packages/python-xyz.scm (python-eliot): Update to 1.16.0.
[propagated-inputs]: Add python-orjson. Remove python-six.
[native-inputs]: Add python-pytest-xdist and python-wheel. Remove
python-dask.
Change-Id: Ibc6eeb5fe4475bf2145a8ab72aa82f17a14bf9f0
---
gnu/packages/python-xyz.scm | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 695c3055d1..d4a823aa22 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33172,14 +33172,14 @@ tbutils
(define-public python-eliot
(package
(name "python-eliot")
- (version "1.13.0")
+ (version "1.16.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "eliot" version))
(sha256
- (base32 "1xzzhsjrrw430dc84vamf683bwp9i0nr86xf2iav6yla615ijq2p"))))
- (build-system python-build-system)
+ (base32 "1ybf5klr8r28yfrkm1a3598h83h10pkx1j1saf9h3lk21isxl9la"))))
+ (build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -33206,21 +33206,21 @@ tbutils
"_test_logCallsDefaultLoggerWrite"))
#t)))))
(propagated-inputs
- (list python-boltons python-pyrsistent python-six
- python-zope-interface))
+ (list python-boltons python-orjson python-pyrsistent
python-zope-interface))
(native-inputs
(list python-black
python-coverage
- python-dask
python-flake8
python-hypothesis
python-pytest
+ python-pytest-xdist
python-setuptools
python-sphinx
python-sphinx-rtd-theme
python-testtools
python-twine
- python-twisted))
+ python-twisted
+ python-wheel))
(home-page "https://github.com/itamarst/eliot/")
(synopsis "Eliot: the logging system that tells you why it happened")
(description