nixpkgs/pkgs/tools/misc/ytmdl/default.nix
Johannes Arnold 25d2223859
ytmdl: 2021.05.26 -> 2021.06.26 (#128256)
* ytmdl: 2021.05.26 -> 2021.06.26

* Update pkgs/tools/misc/ytmdl/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-27 18:42:55 +02:00

52 lines
1.1 KiB
Nix

{ lib, fetchFromGitHub, buildPythonApplication, ffmpeg, ffmpeg-python, musicbrainzngs, rich, simber
, pydes, youtube-search, unidecode, pyxdg, downloader-cli, beautifulsoup4, itunespy, mutagen, pysocks
, youtube-dl, ytmusicapi
}:
buildPythonApplication rec {
pname = "ytmdl";
version = "2021.06.26";
src = fetchFromGitHub {
owner = "deepjyoti30";
repo = pname;
rev = version;
sha256 = "1jpd5zhqg2m9vjjjw4mgzb594q1v1pq1yl65py6kw42bq9w5yl5p";
};
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
ytmusicapi
];
# 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 ];
};
}