summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2025-01-15 11:23:24 +0800
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:57 +0100
commit4533972587a615bc3a886e645344d71a512011de (patch)
tree01c5636b8bb06eb66ef078c4a09ac9d81d97aad1 /gnu/packages/python-xyz.scm
parent2ffc1eb135e1e5705cb325f6066c2ba52b224a28 (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm14
1 files 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