diff options
| author | Nguyễn Gia Phong <cnx@loang.net> | 2026-04-06 03:42:27 +0900 |
|---|---|---|
| committer | Nguyễn Gia Phong <cnx@loang.net> | 2026-04-06 03:42:27 +0900 |
| commit | e7732936f8c0ad274e3ac2efcacfcf07ea222d7a (patch) | |
| tree | 9f526e07e60167ff884185821c080cd50b243530 /gnu | |
| parent | cd2d52bce2a89f5c3243d78979adbba7e00d3c55 (diff) | |
Revert "gnu: python-yewtube: Drop phase 'fix-entry-points."
This reverts commit eee1ff3ae48fa28235c555274284417be3e46f8e.
This commit was intended for a different Python entry point
script template.
References: https://codeberg.org/guix/guix/pulls/5708
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/video.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 23bb7cab8f7..95a44d515ae 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -6899,6 +6899,14 @@ can also directly record to WebM or MP4 if you prefer.") (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'fix-entry-points + (lambda _ + (substitute* "setup.py" + ;; main.py is in a "mps_youtube" and not in + ;; "mps_youtube/main", see: + ;; <https://github.com/mps-youtube/yewtube/pull/1334>. + (("yt = mps_youtube:main.main") + "yt = mps_youtube.main:main")))) (add-after 'unpack 'relax-requirements (lambda _ (substitute* "mps_youtube/__init__.py" |
