diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-21 22:16:26 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:54 +0100 |
| commit | 8ce96a0ff8356fd45ec9e2bff6b83d43ec8140b2 (patch) | |
| tree | a96f45d5f823d6ffed844d5a956701d86e49799f /gnu/packages/python-xyz.scm | |
| parent | 2000a9b136f7a051bb81f0b5f96cbecbae8f3c1c (diff) | |
gnu: python-canopen: Update to 2.4.1.
* gnu/packages/python-xyz.scm (python-canopen): Update to 2.4.1.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel. Add python-setuptools.
Change-Id: Ie1f49c6ce10d9fb6d3ba90a442c5b1d50f9dc554
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 270c13a407..42bd05ae7c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5450,15 +5450,18 @@ converting and comparing CAN databases.") (define-public python-canopen (package (name "python-canopen") - (version "2.3.0") + (version "2.4.1") (source (origin - (method url-fetch) - (uri (pypi-uri "canopen" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/canopen-python/canopen") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "09xqqrb8vfyj3bw61nlgpl1qy86fnm72vpbd80m5p38k7jlq883r")))) + (base32 "0vw6si83m4329p0k0q4b54gn1pindfzkmx6wxqy03bixd94bxw5y")))) (build-system pyproject-build-system) - (native-inputs (list python-pytest python-wheel)) + (native-inputs (list python-pytest python-setuptools)) (propagated-inputs (list python-can)) (home-page "https://github.com/canopen-python/canopen") (synopsis "CANopen stack implementation") |
