mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
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:
parent
454460ca55
commit
a909460099
1 changed files with 42 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue