From 6ef0afa98584da8eaba622232f97e349566a09f4 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 6 Apr 2026 11:46:51 +0100 Subject: [PATCH] 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 --- gnu/packages/music.scm | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 4545b92a0e..9881ab7c46 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -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")