summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-12 14:41:52 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-18 14:37:09 +0100
commitcb0f1da0ff6e4045b759f592ccbbaa95490aa85d (patch)
treefb712a761f2228f5a7c3460fbd9112924f007f13 /gnu
parent1ac7f55e53d072a52746758b6f2e7015854372f9 (diff)
gnu: ytcc: Update to 2.8.0.
* gnu/packages/video.scm (ytcc): Update to 2.8.0. [arguments] <test-flags>: Rework skipped tests. [phases]{pre-check}: New phase. [inputs]: Remove python-urllib3, python-requests, python-pycryptodomex, python-mutagen, and python-brotli; add mpv and python-defusedxml. [native-inputs]: Remove python-setuptools and python-wheel; add python-hatchling. Change-Id: I8b486fd7bff2b34a696f2c14d957f197c311765b
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/video.scm46
1 files changed, 24 insertions, 22 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index eda416cd05..3ca1799c7a 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3498,40 +3498,42 @@ Both command-line and GTK2 interface are available.")
(define-public ytcc
(package
(name "ytcc")
- (version "2.6.1")
+ (version "2.8.0")
(source
(origin
- (method git-fetch) ; no tests in PyPI
+ (method git-fetch)
(uri (git-reference
- (url "https://github.com/woefe/ytcc")
- (commit (string-append "v" version))))
+ (url "https://github.com/woefe/ytcc")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "03rypw9sycardmrxc7hb0iak8zdxz1snv55fbpzyp79yi2iawbd4"))))
+ (base32 "0k9cyd9fb9cwn58xyf3ysyw2w6cm8hpikygqjk7rkd6fcsh737p9"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
- #~(list "-k" (string-append "not test_subscribe"
- " and not test_bug_report_command"
- " and not test_download"
- " and not test_import"
- " and not test_import_duplicate"
- " and not test_play_video"
- " and not test_update"))))
+ ;; AssertionError: assert 'NoCopyrightSounds'.
+ #~(list "--deselect=tests/test_cli.py::test_download"
+ "--deselect=tests/test_cli.py::test_import"
+ "--deselect=tests/test_cli.py::test_import_csv"
+ "--deselect=tests/test_cli.py::test_import_duplicate"
+ "--deselect=tests/test_cli.py::test_play_video"
+ "--deselect=tests/test_cli.py::test_subscribe"
+ "--deselect=tests/test_cli.py::test_update")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'pre-check
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
(native-inputs
- (list python-pytest
- python-setuptools
- python-wheel))
+ (list python-hatchling
+ python-pytest))
(inputs
- (list python-click
- python-wcwidth
+ (list mpv
+ python-click
+ python-defusedxml
python-websockets
- python-urllib3
- python-requests
- python-pycryptodomex
- python-mutagen
- python-brotli
+ python-wcwidth
yt-dlp))
(home-page "https://github.com/woefe/ytcc")
(synopsis "Command line tool to keep track of your favorite playlists")