diff options
author | Vinicius Monego <monego@posteo.net> | 2025-07-30 08:31:53 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2025-08-02 09:15:49 -0300 |
commit | 15c2b47df7c4049185c10047055f3542b5826c2f (patch) | |
tree | 3bcbc9f5c468d43b861792c08abd8ac4a166f234 /gnu | |
parent | 42fc2c5ad2b2b7dfa40c6bd2badec13ca7927d6d (diff) |
gnu: python-sacn: Update to 1.11.0.
* gnu/packages/python-xyz.scm (python-sacn): Update to 1.11.0.
[build-system]: Use pyproject-build-system.
[arguments]<#:phases>: Do not override the 'check' phase.
[native-inputs]: Add python-setuptools, python-wheel.
[synopsis]: Do not break line.
Change-Id: I476308da1c13bcfb6eaf9d55b5f3f6aa4798d450
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ce7ef03d47..941beee8f6 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26957,25 +26957,17 @@ in pure Python.") (define-public python-sacn (package (name "python-sacn") - (version "1.10.0") + (version "1.11.0") (source (origin (method url-fetch) (uri (pypi-uri "sacn" version)) (sha256 - (base32 "02pqfwwx83lgb8nj9p0s6vyi1s7wjgbx9k0bzlyz8qapszzdsr37")))) - (build-system python-build-system) - (arguments - (list #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv"))))))) - (native-inputs (list python-pytest)) + (base32 "1sp0jmrjsd9g62kgi177fw4hi56h21s2p9khia3idmixgz53k2ql")))) + (build-system pyproject-build-system) + (native-inputs (list python-pytest python-setuptools python-wheel)) (home-page "https://github.com/Hundemeier/sacn") - (synopsis - "Python library for sending and receiving sACN data") + (synopsis "Python library for sending and receiving sACN data") (description "This package provides a Python library for sending and receiving sACN (Streaming Architecture for Control Networks) data, a standard |