diff options
| author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2022-05-30 22:57:49 +0300 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-06-05 21:27:52 +0200 |
| commit | ddb7e35bc4eb177d3cfe78973265851b8ab67361 (patch) | |
| tree | 41e9642b85becb9282d775a6dd128fd3c657e3d9 | |
| parent | 21ca4719b3996b7c752f5e996e801d67c3bf2748 (diff) | |
gnu: Add python-musical-scales
* gnu/packages/python-xyz.scm (python-musical-scales): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 979a11a5a6b..bcc65e289fe 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm | |||
| @@ -29293,3 +29293,24 @@ profile. It supports: | |||
| 29293 | 29293 | ||
| 29294 | Currently, Linux is the only platform supported by this library.") | 29294 | Currently, Linux is the only platform supported by this library.") |
| 29295 | (license license:expat))) | 29295 | (license license:expat))) |
| 29296 | |||
| 29297 | (define-public python-musical-scales | ||
| 29298 | (package | ||
| 29299 | (name "python-musical-scales") | ||
| 29300 | (version "1.0.1") | ||
| 29301 | (source (origin | ||
| 29302 | (method url-fetch) | ||
| 29303 | (uri (pypi-uri "musical-scales" version)) | ||
| 29304 | (sha256 | ||
| 29305 | (base32 | ||
| 29306 | "1ckn8n37i7b65h0i385ycn0w8sg9na0iabz0kmhxxc1wj0hddkw9")))) | ||
| 29307 | (build-system python-build-system) | ||
| 29308 | (native-inputs (list python-wheel)) | ||
| 29309 | (home-page "https://github.com/hmillerbakewell/musical-scale") | ||
| 29310 | (synopsis "Retrieve a scale based on a given mode and starting note") | ||
| 29311 | (description | ||
| 29312 | "Retrieve a scale based on a given mode and starting note. | ||
| 29313 | Information about these scales can be | ||
| 29314 | @url{https://en.wikipedia.org/wiki/List_of_musical_scales_and_modes, found on | ||
| 29315 | Wikipedia}.") | ||
| 29316 | (license license:expat))) | ||
