1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-abjad-ext-nauert: Update to 3.31.

* gnu/packages/music.scm (python-abjad-ext-nauert): Update to 3.31.
[phases]{remove-local-source}: New phase.
[native-inputs]: Remove python-wheel.

Change-Id: Icac45d805e03a91cc3e5f3bdf1ab1ce41d626b67
This commit is contained in:
Sharlatan Hellseher
2026-04-06 11:46:51 +01:00
parent 39f95f889e
commit 6ef0afa985

View File

@@ -3167,19 +3167,28 @@ detail of symbols on the page.")
(define-public python-abjad-ext-nauert
(package
(name "python-abjad-ext-nauert")
(version "3.19")
(version "3.31")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Abjad/abjad-ext-nauert")
(commit (string-append "v" version))))
(url "https://github.com/Abjad/abjad-ext-nauert")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0j4pf4h27jm3df0dn2rwkdx6zqcxvr7pqchbaa9rffz7q4hbakmf"))))
(base32 "03nav7f8wi5f5lyib6xp1fnd6mrk0j1l2mx0q01ixkkc1v2h77h2"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'remove-local-source
(lambda _
(delete-file-recursively "source"))))))
(native-inputs
(list lilypond python-pytest python-setuptools python-wheel))
(list lilypond
python-pytest
python-setuptools))
(propagated-inputs
(list python-abjad))
(home-page "https://abjad.github.io")