mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: python-python3-midi: Switch to pyproject.
* gnu/packages/audio.scm (python-python3-midi): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests?>: Disable them. [native-inputs]: Add python-setuptools. [description]: Improve style. Change-Id: I035a2e99dbb7a63c52d68c08f9dd2889f7cb0136 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
c1d2c20358
commit
9f751b809b
1 changed files with 12 additions and 7 deletions
|
|
@ -3824,16 +3824,21 @@ one-dimensional sample-rate conversion library.")
|
||||||
(version "0.2.5")
|
(version "0.2.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (pypi-uri "python3_midi" version))
|
(uri (git-reference
|
||||||
|
(url "https://github.com/NFJones/python3-midi")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1zihn7n9dr9jjgkjlpad515hhwh22k94irb21ji793sr5crh5s15"))))
|
||||||
"1z9j1w7mpn3xhkcpxmqm5rvmj6nffb5rf14bv7n3sdh07nf6n7sf"))))
|
(build-system pyproject-build-system)
|
||||||
(build-system python-build-system)
|
(arguments
|
||||||
|
(list #:tests? #f)) ; XXX: midi module has not been packaged yet.
|
||||||
|
(native-inputs (list python-setuptools))
|
||||||
(home-page "https://github.com/NFJones/python3-midi")
|
(home-page "https://github.com/NFJones/python3-midi")
|
||||||
(synopsis "Python MIDI API")
|
(synopsis "Python MIDI API")
|
||||||
(description "This package provides a python API to read and write MIDI
|
(description
|
||||||
files.")
|
"This package provides a python API to read and write MIDI files.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-wavefile
|
(define-public python-wavefile
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue