diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2019-03-10 15:17:44 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2019-03-10 15:17:44 +0300 |
| commit | f6dfa5fc08824ebe5bdc42ea35ff0e040245c8c0 (patch) | |
| tree | 22ccb5e7e29cabd7628be0f7422ea1aa4d3945c7 | |
| parent | wigust: Add lyricwikia. (diff) | |
| download | guix-wigust-f6dfa5fc08824ebe5bdc42ea35ff0e040245c8c0.tar.gz | |
wigust: Add spotify-cli-linux.gitea/master
* wigust/packages/python.scm (spotify-cli-linux): New variable.
| -rw-r--r-- | wigust/packages/python.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/wigust/packages/python.scm b/wigust/packages/python.scm index ba8e715..c9820c6 100644 --- a/wigust/packages/python.scm +++ b/wigust/packages/python.scm @@ -435,3 +435,27 @@ service has been discontinued. This API scrapes the song web page and returns the lyrics. Please verify that your use complies with the LyricWikia terms of service.") (license license:expat))) + +(define-public spotify-cli-linux + (package + (name "spotify-cli-linux") + (version "1.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "spotify-cli-linux" version)) + (sha256 + (base32 + "0x875nxfiwja4z8yys7hmhhzzxcmzsqivvy12qqalgac8nxpsyz7")))) + (build-system python-build-system) + (propagated-inputs + `(("python-dbus" ,python-dbus) + ("lyricwikia" ,lyricwikia))) + (arguments + `(#:tests? #f)) + (home-page "https://github.com/pwittchen/spotify-cli-linux") + (synopsis "Command line interface to Spotify") + (description "This package provides a command line interface to Spotify") + (license license:gpl3+))) + + |
