Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 643 B view raw
1{ 2 lib, 3 buildPythonApplication, 4 fetchPypi, 5 aigpy, 6}: 7 8buildPythonApplication rec { 9 pname = "tidal-dl"; 10 version = "2022.10.31.1"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-b2AAsiI3n2/v6HC37fMI/d8UcxZxsWM+fnWvdajHrOg="; 16 }; 17 18 propagatedBuildInputs = [ aigpy ]; 19 20 meta = { 21 homepage = "https://github.com/yaronzz/Tidal-Media-Downloader"; 22 description = "Application that lets you download videos and tracks from Tidal"; 23 license = lib.licenses.asl20; 24 maintainers = [ lib.maintainers.misterio77 ]; 25 platforms = lib.platforms.all; 26 mainProgram = "tidal-dl"; 27 }; 28}