about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytubefix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytubefix/default.nix')
-rw-r--r--pkgs/development/python-modules/pytubefix/default.nix32
1 files changed, 24 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/pytubefix/default.nix b/pkgs/development/python-modules/pytubefix/default.nix
index 185d481f754dc..a42273fee7cc6 100644
--- a/pkgs/development/python-modules/pytubefix/default.nix
+++ b/pkgs/development/python-modules/pytubefix/default.nix
@@ -1,21 +1,37 @@
 {
   lib,
   buildPythonPackage,
-  fetchPypi,
-  setuptools-scm,
+  fetchFromGitHub,
+  setuptools,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
   pname = "pytubefix";
-  version = "5.6.3";
-  format = "pyproject";
+  version = "6.4.2";
+  pyproject = true;
 
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "sha256-qYNIQhwSZ3ZG3WMY6qCul1OEno1PWgMlfcFSxN3c6aw=";
+  src = fetchFromGitHub {
+    owner = "JuanBindez";
+    repo = "pytubefix";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-FbmVQ+nt/WEwE5vRMo2610TO463CT8nCseqB30uXjSM=";
   };
 
-  nativeBuildInputs = [ setuptools-scm ];
+  build-system = [ setuptools ];
+
+  nativeCheckInputs = [ pytestCheckHook ];
+
+  disabledTestPaths = [
+    # require network access
+    "tests/test_captions.py"
+    "tests/test_cli.py"
+    "tests/test_exceptions.py"
+    "tests/test_extract.py"
+    "tests/test_main.py"
+    "tests/test_query.py"
+    "tests/test_streams.py"
+  ];
 
   pythonImportsCheck = [ "pytubefix" ];