mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: audio-to-midi: Use pyproject-build-system.
* gnu/packages/audio.scm (audio-to-midi): [build-system]: Use pyproject. [native-inputs]: Add python-setuptools and python-wheel. [arguments]: Disable tests (there seem to be no tests). Change-Id: Idc9f427206e97e607cbe76162a80d11de3c99bcf Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
ae587fa99e
commit
cd58f69a6f
1 changed files with 7 additions and 3 deletions
|
@ -53,6 +53,7 @@
|
|||
;;; Copyright © 2025 Junker <dk@junkeria.club>
|
||||
;;; Copyright © 2025 Sughosha <sughosha@disroot.org>
|
||||
;;; Copyright © 2025 Andrew Wong <wongandj@icloud.com>
|
||||
;;; Copyright © 2025 Kjartan Oli Agustsson <kjartanoli@outlook.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3625,7 +3626,7 @@ files.")
|
|||
(sha256
|
||||
(base32
|
||||
"12wf17abn3psbsg2r2lk0xdnk8n5cd5rrvjlpxjnjfhd09n7qqgm"))))
|
||||
(build-system python-build-system)
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs
|
||||
(list python-cffi
|
||||
python-cython
|
||||
|
@ -3635,9 +3636,12 @@ files.")
|
|||
python-python3-midi
|
||||
python-soundfile))
|
||||
(native-inputs
|
||||
(list libsndfile))
|
||||
(list libsndfile
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(#:tests? #f ; There seem to be no tests
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-versions
|
||||
(lambda _
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue