2022-12-29 11:21:17 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "yewtube";
|
2024-09-12 16:53:49 +02:00
|
|
|
version = "2.12.0";
|
2022-12-29 11:21:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2023-03-21 17:14:22 +01:00
|
|
|
owner = "mps-youtube";
|
2022-12-29 11:21:17 +01:00
|
|
|
repo = "yewtube";
|
2023-02-04 12:48:17 +01:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-09-12 16:53:49 +02:00
|
|
|
hash = "sha256-66cGnEEISC+lZAYhFXuVdDtwh1TgwvCP6nBD84z2z0I=";
|
2022-12-29 11:21:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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}' #"
|
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
pyperclip
|
|
|
|
requests
|
|
|
|
youtube-search-python
|
|
|
|
yt-dlp
|
2023-03-21 17:14:22 +01:00
|
|
|
pylast
|
2022-12-29 11:21:17 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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";
|
2024-03-19 03:14:51 +01:00
|
|
|
mainProgram = "yt";
|
2023-03-21 17:14:22 +01:00
|
|
|
homepage = "https://github.com/mps-youtube/yewtube";
|
2022-12-29 11:21:17 +01:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ fgaz koral ];
|
|
|
|
};
|
|
|
|
}
|