gnu: Add python-simpleaudio.

* gnu/packages/python-xyz.scm (python-simpleaudio): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Tanguy Le Carrour 2020-10-28 10:08:10 +01:00 committed by Leo Famulari
parent d22d129da9
commit 36c74e27a8
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08

View File

@ -1843,6 +1843,30 @@ after Andy Lesters Perl module WWW::Mechanize.")
(define-public python2-mechanize
(package-with-python2 python-mechanize))
(define-public python-simpleaudio
(package
(name "python-simpleaudio")
(version "1.0.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "simpleaudio" version))
(sha256
(base32
"07glihg0fpca0gvbbvqs9q815w8xhflzdvg72yvlsm23j9j8h739"))))
(build-system python-build-system)
(arguments
`(#:tests? #f))
(native-inputs
`(("alsa-lib" ,alsa-lib)))
(home-page
"https://github.com/hamiltron/py-simple-audio")
(synopsis "Simple, asynchronous audio playback for Python 3")
(description
"The @code{simplaudio} package provides cross-platform, dependency-free
audio playback capability for Python 3 on OSX, Windows, and Linux.")
(license license:expat))) ; MIT license
(define-public python-simplejson
(package
(name "python-simplejson")