anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / audio / tidal-dl / default.nix
blobeb7c597d2d75f4d890392bea7fc1a661ea037491
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , aigpy
5 }:
7 buildPythonApplication rec {
8   pname = "tidal-dl";
9   version = "2022.10.31.1";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-b2AAsiI3n2/v6HC37fMI/d8UcxZxsWM+fnWvdajHrOg=";
14   };
16   propagatedBuildInputs = [ aigpy ];
18   meta = {
19     homepage = "https://github.com/yaronzz/Tidal-Media-Downloader";
20     description = "Application that lets you download videos and tracks from Tidal";
21     license = lib.licenses.asl20;
22     maintainers = [ lib.maintainers.misterio77 ];
23     platforms = lib.platforms.all;
24     mainProgram = "tidal-dl";
25   };