Archived
1
0
Fork 0

gnu: streamlink: Update to 0.13.0-1.2dca793.

* gnu/packages/video.scm (streamlink): Update to 0.13.0-1.2dca793.
This commit is contained in:
Oleg Pykhalov 2018-06-24 09:48:04 +03:00
parent 36ba88da4a
commit 1a29159342
No known key found for this signature in database
GPG key ID: 7246E11C69B79569

View file

@ -123,6 +123,7 @@
#:use-module (gnu packages texinfo) #:use-module (gnu packages texinfo)
#:use-module (gnu packages textutils) #:use-module (gnu packages textutils)
#:use-module (gnu packages tls) #:use-module (gnu packages tls)
#:use-module (gnu packages time)
#:use-module (gnu packages upnp) #:use-module (gnu packages upnp)
#:use-module (gnu packages version-control) #:use-module (gnu packages version-control)
#:use-module (gnu packages vulkan) #:use-module (gnu packages vulkan)
@ -1813,34 +1814,41 @@ and custom quantization matrices.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public streamlink (define-public streamlink
(package ;; Release tarball doesn't contain tests/resources/dash/ directory.
(name "streamlink") (let ((commit "2dca7930a938f60b48d8e23260963ea7c49d979f"))
(version "0.11.0") (package
(source (name "streamlink")
(origin (version (git-version "0.13.0" "1" commit))
(method url-fetch) (source
(uri (pypi-uri "streamlink" version)) (origin
(sha256 (method git-fetch)
(base32 (uri (git-reference
"02h8b3k8l5zz4vjm0nhxvl1pm924jms8y7sjl40fbybrzvsa4mg2")))) (url "https://github.com/streamlink/streamlink.git")
(build-system python-build-system) (commit commit)))
(home-page "https://github.com/streamlink/streamlink") (file-name (git-file-name name version))
(native-inputs (sha256
`(("python-pytest" ,python-pytest) (base32
("python-mock" ,python-mock) "0vq19aspshim63aj8yl2p64ykrbk2mwwlawdx427b3j2djlc5qhw"))))
("python-requests-mock" ,python-requests-mock))) (build-system python-build-system)
(propagated-inputs (home-page "https://github.com/streamlink/streamlink")
`(("python-pysocks" ,python-pysocks) (native-inputs
("python-websocket-client" ,python-websocket-client) `(("python-freezegun" ,python-freezegun)
("python-iso3166" ,python-iso3166) ("python-pytest" ,python-pytest)
("python-iso639" ,python-iso639) ("python-mock" ,python-mock)
("python-pycryptodome" ,python-pycryptodome) ("python-requests-mock" ,python-requests-mock)))
("python-requests" ,python-requests) (propagated-inputs
("python-urllib3" ,python-urllib3))) `(("python-pysocks" ,python-pysocks)
(synopsis "Extract streams from various services") ("python-websocket-client" ,python-websocket-client)
(description "Streamlink is command-line utility that extracts streams ("python-iso3166" ,python-iso3166)
("python-iso639" ,python-iso639)
("python-isodate", python-isodate)
("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))