nixpkgs/pkgs/by-name/yu/yutto/package.nix
2024-10-17 14:40:33 +08:00

60 lines
1.2 KiB
Nix

{
lib,
python3Packages,
fetchFromGitHub,
ffmpeg,
nix-update-script,
}:
python3Packages.buildPythonApplication rec {
pname = "yutto";
version = "2.0.0-rc.4";
pyproject = true;
disabled = python3Packages.pythonOlder "3.9";
pythonRelaxDeps = true;
src = fetchFromGitHub {
owner = "yutto-dev";
repo = "yutto";
rev = "refs/tags/v${version}";
hash = "sha256-QP3sbZANsyYeZmLZSwQz6E1eysCVojRYHu/z9Szdb6U=";
};
build-system = with python3Packages; [ hatchling ];
dependencies =
with python3Packages;
[
httpx
aiofiles
biliass
dict2xml
colorama
typing-extensions
pydantic
]
++ (with httpx.optional-dependencies; http2 ++ socks);
preFixup = ''
makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg ]})
'';
pythonImportsCheck = [ "yutto" ];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version"
"unstable"
];
};
meta = with lib; {
description = "Bilibili downloader";
homepage = "https://github.com/yutto-dev/yutto";
license = licenses.gpl3Only;
maintainers = with maintainers; [ linsui ];
mainProgram = "yutto";
};
}