diff options
author | Vinicius Monego <monego@posteo.net> | 2025-06-25 19:18:52 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-06-26 00:42:00 -0300 |
commit | eb0c03e82c15439f6c3270d17713b0e298fda79d (patch) | |
tree | 9507f9d324c497a27e6cba4010d360e65aaa0be8 | |
parent | 7ceb839dc32a82384a9c8b1205957286554cf12e (diff) |
gnu: python-canopen: Update to 2.3.0.
* gnu/packages/python-xyz.scm (python-canopen): Update to 2.3.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Remove python-packaging. Add python-pytest,
python-wheel.
[home-page]: Follow redirect.
Change-Id: I9dd32b4376e2c2b2e19de63c9992c06c6f0b6859
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index da17500b60..530ac8cbdc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4875,17 +4875,17 @@ converting and comparing CAN databases.") (define-public python-canopen (package (name "python-canopen") - (version "2.0.0") + (version "2.3.0") (source (origin (method url-fetch) (uri (pypi-uri "canopen" version)) (sha256 - (base32 "1nb543wb37kj95v6bhh272lm5gkpi41q3pnsl1fxlyizm2gamj5w")))) - (build-system python-build-system) - (native-inputs (list python-packaging)) + (base32 "09xqqrb8vfyj3bw61nlgpl1qy86fnm72vpbd80m5p38k7jlq883r")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-wheel)) (propagated-inputs (list python-can)) - (home-page "https://github.com/christiansandberg/canopen") + (home-page "https://github.com/canopen-python/canopen") (synopsis "CANopen stack implementation") (description "This package provides a Python implementation of the |