mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 07:27:48 -05:00
gnu: Add python-musical-scales
* gnu/packages/python-xyz.scm (python-musical-scales): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
21ca4719b3
commit
ddb7e35bc4
1 changed files with 21 additions and 0 deletions
|
@ -29293,3 +29293,24 @@ (define-public python-gatt
|
||||||
|
|
||||||
Currently, Linux is the only platform supported by this library.")
|
Currently, Linux is the only platform supported by this library.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-musical-scales
|
||||||
|
(package
|
||||||
|
(name "python-musical-scales")
|
||||||
|
(version "1.0.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "musical-scales" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ckn8n37i7b65h0i385ycn0w8sg9na0iabz0kmhxxc1wj0hddkw9"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs (list python-wheel))
|
||||||
|
(home-page "https://github.com/hmillerbakewell/musical-scale")
|
||||||
|
(synopsis "Retrieve a scale based on a given mode and starting note")
|
||||||
|
(description
|
||||||
|
"Retrieve a scale based on a given mode and starting note.
|
||||||
|
Information about these scales can be
|
||||||
|
@url{https://en.wikipedia.org/wiki/List_of_musical_scales_and_modes, found on
|
||||||
|
Wikipedia}.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue