aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-05 12:11:55 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:19:00 +0000
commit577027a2aa1b053ce15895d34d6da2a1f37109d3 (patch)
tree9c01fd925fb3e4af8ce67d7c04b8fad60205e33a
parent955e476e41d6dd6bab2680a7984fc2f351208d81 (diff)
downloadguix-577027a2aa1b053ce15895d34d6da2a1f37109d3.tar.gz
guix-577027a2aa1b053ce15895d34d6da2a1f37109d3.zip
gnu: python-automat: Update to 22.10.0.
* gnu/packages/python-xyz.scm (python-automat): Update to 22.10.0. [build-syste]: Swap to pyproject-build-system. [native-inputs]: Remove python-m2r; add python-setuptools and python-wheel. Change-Id: I3fc7391695be5a5f8b4c026b9e4ffa58d0374751
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6199513e1c..a4be04806c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24643,14 +24643,14 @@ manipulation and interaction with formal grammars.")
(define-public python-automat
(package
(name "python-automat")
- (version "20.2.0")
+ (version "22.10.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "Automat" version))
(sha256
(base32
- "0cyzrcqiibwdsp4y0djkllnzab8m5faa4s0d1kpi23k1fhy80ybr"))))
- (build-system python-build-system)
+ "0kmh9fwb6rkh8r5bi5jyxysywpgpjnwdks1h3p0xq6ddxn2fnsz5"))))
+ (build-system pyproject-build-system)
;; We disable the tests because they require python-twisted, while
;; python-twisted depends on python-automat. Twisted is optional, but the
;; tests fail if it is not available. Also see
@@ -24665,7 +24665,10 @@ manipulation and interaction with formal grammars.")
(substitute* "setup.py"
(("\"automat-visualize = automat._visualize:tool\"") "")))))))
(native-inputs
- (list python-m2r python-setuptools-scm python-graphviz))
+ (list python-graphviz
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
(propagated-inputs
(list python-six python-attrs))
(home-page "https://github.com/glyph/Automat")