[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/11: gnu: streamlink: Update to 3.2.0.
From: |
guix-commits |
Subject: |
02/11: gnu: streamlink: Update to 3.2.0. |
Date: |
Fri, 15 Apr 2022 13:14:28 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit ff3355dcbf155fcdb3ff1502efe13d969c5d6979
Author: Chadwain Holness <chadwainholness@gmail.com>
AuthorDate: Thu Mar 24 13:37:04 2022 -0400
gnu: streamlink: Update to 3.2.0.
* gnu/packages/video.scm (streamlink): Update to 3.2.0.
[inputs]: Add python-lxml and python-pycountry, remove python-iso3166 and
python-iso639.
[arguments]<#:phases>{check}: Use pytest.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/video.scm | 19 +++++++++++++------
1 file changed, 13 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 4bc50073cd..ae22d50922 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -60,6 +60,7 @@
;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
;;; Copyright © 2022 Bird <birdsite@airmail.cc>
;;; Copyright © 2022 Jai Vetrivelan <jaivetrivelan@gmail.com>
+;;; Copyright © 2022 Chadwain Holness <chadwainholness@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3135,28 +3136,34 @@ and custom quantization matrices.")
(define-public streamlink
(package
(name "streamlink")
- (version "2.0.0")
+ (version "3.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "streamlink" version))
(sha256
(base32
- "1nv2kj1k42a1b20ws8sdzlxk3wh1qz6pg5mxp75433b3c7lxksn0"))))
+ "09nrspga15svzi0hmakcarbciav0nzf30hg1ff53gia473cd4w4p"))))
(build-system python-build-system)
- (home-page "https://github.com/streamlink/streamlink")
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "pytest")))))))
(native-inputs
- (list python-freezegun python-pytest python-mock
+ (list python-freezegun python-mock python-pytest
python-requests-mock))
(propagated-inputs
(list python-pysocks
python-websocket-client
- python-iso3166
- python-iso639
python-isodate
+ python-lxml-4.7
+ python-pycountry
python-pycryptodome
python-requests
python-urllib3))
+ (home-page "https://github.com/streamlink/streamlink")
(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.")
- branch master updated (179a949e60 -> 6db5787120), guix-commits, 2022/04/15
- 02/11: gnu: streamlink: Update to 3.2.0.,
guix-commits <=
- 10/11: gnu: emacs-mu4e-patch: Rename to emacs-message-view-patch, guix-commits, 2022/04/15
- 05/11: gnu: Add python-shtab., guix-commits, 2022/04/15
- 11/11: gnu: emacs-message-view-patch: Update to 0.2.0-40bc2e5, guix-commits, 2022/04/15
- 04/11: gnu: shepherd: Support cross-compilation., guix-commits, 2022/04/15
- 07/11: gnu: xfce4-terminal: Update to 1.0.0., guix-commits, 2022/04/15
- 06/11: gnu: Add python-verspec., guix-commits, 2022/04/15
- 09/11: gnu: xfce4-diskperf-plugin: Update to 2.7.0., guix-commits, 2022/04/15
- 08/11: gnu: elementary-xfce-icon-theme: Update to 0.16., guix-commits, 2022/04/15
- 03/11: gnu: mblaze: Offer contrib executables., guix-commits, 2022/04/15
- 01/11: gnu: python-lxml: Add 4.7.1., guix-commits, 2022/04/15