nixpkgs/pkgs/tools/misc/ytmdl/default.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

2021-06-15 22:44:28 +01:00
{ lib, fetchFromGitHub, buildPythonApplication, ffmpeg, ffmpeg-python, musicbrainzngs, rich, simber, pydes, youtube-search, unidecode, pyxdg, downloader-cli, beautifulsoup4, itunespy, mutagen, pysocks, youtube-dl }:
buildPythonApplication rec {
pname = "ytmdl";
version = "2021.05.26";
src = fetchFromGitHub {
owner = "deepjyoti30";
repo = pname;
rev = version;
sha256 = "sha256-AYBhPmv1/cOaMh44kqm7JpJSudHbfriiJztcGL5mbEk=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "bs4" "beautifulsoup4"
'';
propagatedBuildInputs = [
ffmpeg
ffmpeg-python
musicbrainzngs
rich
simber
pydes
youtube-search
unidecode
pyxdg
downloader-cli
beautifulsoup4
itunespy
mutagen
pysocks
youtube-dl
];
# This application has no tests
doCheck = false;
meta = with lib; {
homepage = "https://github.com/deepjyoti30/ytmdl";
description = "YouTube Music Downloader";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ j0hax ];
};
}