GNU bug report logs - #76746
[PATCH 00/13] Add spotify-downloader.

Previous Next

Package: guix-patches;

Reported by: 45mg <45mg.writes <at> gmail.com>

Date: Tue, 4 Mar 2025 19:11:01 UTC

Severity: normal

Tags: patch

Full log


View this message in rfc822 format

From: 45mg <45mg.writes <at> gmail.com>
To: 76746 <at> debbugs.gnu.org
Cc: 45mg <45mg.writes <at> gmail.com>, Lars-Dominik Braun <lars <at> 6xq.net>, Munyoki Kilyungi <me <at> bonfacemunyoki.com>, Sharlatan Hellseher <sharlatanus <at> gmail.com>, Tanguy Le Carrour <tanguy <at> bioneland.org>, jgart <jgart <at> dismail.de>
Subject: [bug#76746] [PATCH 11/13] gnu: Add python-pytube.
Date: Wed,  5 Mar 2025 00:43:14 +0530
* gnu/packages/python-web.scm (python-pytube): New variable.

Change-Id: Ie2b342a884b4694a0dc8a0c959a918e4b0ab25b3
---
 gnu/packages/python-web.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 1717b6fdfc..6666fb5675 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10755,6 +10755,36 @@ (define-public python-ytmusicapi
 authentication.")
     (license license:expat)))
 
+(define-public python-pytube
+  (package
+    (name "python-pytube")
+    (version "15.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pytube/pytube")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        "1598764vnzhc5s4w1car5sci3fmf8lp3rflsysb76f794ms35vvd")))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-setuptools python-wheel))
+    (arguments
+     '(#:test-flags  ;Disable network-dependent tests.
+       '("--ignore=tests/test_extract.py"
+         "--ignore=tests/test_query.py"
+         "--ignore=tests/test_streams.py"
+         "--ignore=tests/test_main.py"
+         "-k"
+         "not test_streaming")))
+    (home-page "https://github.com/pytube/pytube")
+    (synopsis "Library and utility for downloading YouTube videos")
+    (description
+     "This is a lightweight, dependency-free Python 3 library (and
+command-line utility) for downloading YouTube videos.")
+    (license license:unlicense)))
+
 (define-public python-whatthepatch
   (package
     (name "python-whatthepatch")
-- 
2.48.1





This bug report was last modified 86 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.