about summary refs log tree commit diff
path: root/pkgs/applications/misc/yewtube
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2022-12-29 11:21:17 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2023-01-19 15:37:19 +0100
commit387e803f3071c0ef35d919a85f8574dd11eb3d09 (patch)
tree70954e5aaeaa12868a56e0f0b2ab1926ba81fa21 /pkgs/applications/misc/yewtube
parent7f6757e4f2f6f68096988240940268dc4fd853d4 (diff)
yewtube: init at 2.9.0
Diffstat (limited to 'pkgs/applications/misc/yewtube')
-rw-r--r--pkgs/applications/misc/yewtube/default.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/applications/misc/yewtube/default.nix b/pkgs/applications/misc/yewtube/default.nix
new file mode 100644
index 0000000000000..f217c7b0e9a57
--- /dev/null
+++ b/pkgs/applications/misc/yewtube/default.nix
@@ -0,0 +1,48 @@
+{ lib, python3Packages, fetchFromGitHub }:
+
+python3Packages.buildPythonApplication rec {
+  pname = "yewtube";
+  version = "2.9.0";
+
+  src = fetchFromGitHub {
+    owner = "iamtalhaasghar";
+    repo = "yewtube";
+    rev = "v${version}";
+    hash = "sha256-8GL2ZvRHtnnLZ07nQk3irJUj+XLL+pyUUA+JJPICPRA=";
+  };
+
+  postPatch = ''
+    # Don't try to detect the version at runtime with pip
+    substituteInPlace mps_youtube/__init__.py \
+      --replace "from pip._vendor import pkg_resources" "" \
+      --replace "__version__ =" "__version__ = '${version}' #"
+    # https://github.com/iamtalhaasghar/yewtube/pull/105
+    sed -ie '/pyreadline/d' requirements.txt
+  '';
+
+  propagatedBuildInputs = with python3Packages; [
+    pyperclip
+    requests
+    youtube-search-python
+    yt-dlp
+  ];
+
+  checkInputs = with python3Packages; [
+    pytestCheckHook
+    dbus-python
+    pygobject3
+  ];
+
+  preCheck = ''
+    export XDG_CONFIG_HOME=$(mktemp -d)
+  '';
+
+  pythonImportsCheck = [ "mps_youtube" ];
+
+  meta = with lib; {
+    description = "Terminal based YouTube player and downloader, forked from mps-youtube";
+    homepage = "https://github.com/iamtalhaasghar/yewtube";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ fgaz koral ];
+  };
+}