python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / tools / audio / tidal-dl / default.nix
blobcbc65e76561179fad994eb6bec3b4f76c17b65bc
2   lib,
3   buildPythonApplication,
4   fetchPypi,
5   aigpy,
6 }:
8 buildPythonApplication rec {
9   pname = "tidal-dl";
10   version = "2022.10.31.1";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-b2AAsiI3n2/v6HC37fMI/d8UcxZxsWM+fnWvdajHrOg=";
15   };
17   propagatedBuildInputs = [ aigpy ];
19   meta = {
20     homepage = "https://github.com/yaronzz/Tidal-Media-Downloader";
21     description = "Application that lets you download videos and tracks from Tidal";
22     license = lib.licenses.asl20;
23     maintainers = [ lib.maintainers.misterio77 ];
24     platforms = lib.platforms.all;
25     mainProgram = "tidal-dl";
26   };