gnu: Add abjad-ext-rmakers.

* gnu/packages/music.scm (abjad-ext-rmakers): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
jgart 2021-04-16 00:35:27 -04:00 committed by Efraim Flashner
parent 454460ca55
commit a909460099
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1617,6 +1617,48 @@ (define-public abjad
(define-public python-abjad
(deprecated-package "python-abjad" abjad))
(define-public abjad-ext-rmakers
(package
(name "abjad-ext-rmakers")
(version "3.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Abjad/abjad-ext-rmakers")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"03nry8lzh3s81yq4lw8y6j63m7zdsl20q7rvx9cfmp3rmbvlaycs"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "python" "-m" "pytest" ".")
#t))))))
(native-inputs
`(("lilypond" ,lilypond)
("python-black" ,python-black)
("python-flake8" ,python-flake8)
("python-iniconfig" ,python-iniconfig)
("python-isort" ,python-isort)
("python-mypy" ,python-mypy)
("python-pytest" ,python-pytest-6)
("python-pytest-cov" ,python-pytest-cov)
("python-pytest-helpers-namespace" ,python-pytest-helpers-namespace)))
(propagated-inputs
`(("abjad" ,abjad)))
(home-page "https://abjad.github.io")
(synopsis "Abjad rhythm-maker exension package")
(description
"@code{abjad-ext-rmakers} includes a collection of classes for creating and
and manipulating rhythms such as accelerandi, taleas, and more.")
(license license:expat)))
(define-public non-sequencer
;; The latest tagged release is three years old and uses a custom build
;; system, so we take the last commit.