summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm21
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
29294Currently, Linux is the only platform supported by this library.") 29294Currently, 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.
29313Information about these scales can be
29314@url{https://en.wikipedia.org/wiki/List_of_musical_scales_and_modes, found on
29315Wikipedia}.")
29316 (license license:expat)))