mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|