gnu: streamlink: Update to 0.14.2.

* gnu/packages/video.scm (streamlink): Update to 0.14.2.
[source]: Download from pypi.
This commit is contained in:
Efraim Flashner 2018-10-17 11:24:07 +03:00
parent 24220e0f09
commit 15b283e712
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 29 additions and 34 deletions

View File

@ -1860,41 +1860,36 @@ and custom quantization matrices.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public streamlink (define-public streamlink
;; Release tarball doesn't contain tests/resources/dash/ directory. (package
(let ((commit "2dca7930a938f60b48d8e23260963ea7c49d979f")) (name "streamlink")
(package (version "0.14.2")
(name "streamlink") (source
(version (git-version "0.13.0" "1" commit)) (origin
(source (method url-fetch)
(origin (uri (pypi-uri "streamlink" version))
(method git-fetch) (sha256
(uri (git-reference (base32
(url "https://github.com/streamlink/streamlink.git") "0l2145fd60i76afjisfxd48cwhwyir07i7s3bnimdq5db2kzkix8"))))
(commit commit))) (build-system python-build-system)
(file-name (git-file-name name version)) (home-page "https://github.com/streamlink/streamlink")
(sha256 (native-inputs
(base32 `(("python-freezegun" ,python-freezegun)
"0vq19aspshim63aj8yl2p64ykrbk2mwwlawdx427b3j2djlc5qhw")))) ("python-pytest" ,python-pytest)
(build-system python-build-system) ("python-mock" ,python-mock)
(home-page "https://github.com/streamlink/streamlink") ("python-requests-mock" ,python-requests-mock)))
(native-inputs (propagated-inputs
`(("python-freezegun" ,python-freezegun) `(("python-pysocks" ,python-pysocks)
("python-pytest" ,python-pytest) ("python-websocket-client" ,python-websocket-client)
("python-mock" ,python-mock) ("python-iso3166" ,python-iso3166)
("python-requests-mock" ,python-requests-mock))) ("python-iso639" ,python-iso639)
(propagated-inputs ("python-isodate", python-isodate)
`(("python-pysocks" ,python-pysocks) ("python-pycryptodome" ,python-pycryptodome)
("python-websocket-client" ,python-websocket-client) ("python-requests" ,python-requests)
("python-iso3166" ,python-iso3166) ("python-urllib3" ,python-urllib3)))
("python-iso639" ,python-iso639) (synopsis "Extract streams from various services")
("python-isodate", python-isodate) (description "Streamlink is command-line utility that extracts streams
("python-pycryptodome" ,python-pycryptodome)
("python-requests" ,python-requests)
("python-urllib3" ,python-urllib3)))
(synopsis "Extract streams from various services")
(description "Streamlink is command-line utility that extracts streams
from sites like Twitch.tv and pipes them into a video player of choice.") from sites like Twitch.tv and pipes them into a video player of choice.")
(license license:bsd-2)))) (license license:bsd-2)))
(define-public livestreamer (define-public livestreamer
(deprecated-package "livestreamer" streamlink)) (deprecated-package "livestreamer" streamlink))