nixpkgs/pkgs/tools/misc/yutto/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
860 B
Nix
Raw Normal View History

2022-05-26 05:06:05 +03:00
{ lib
, python3
2022-05-26 05:06:05 +03:00
, ffmpeg
, makeWrapper
, nix-update-script
2022-05-26 05:06:05 +03:00
}:
with python3.pkgs;
2022-05-26 05:06:05 +03:00
buildPythonApplication rec {
pname = "yutto";
2023-03-02 13:28:26 +03:00
version = "2.0.0b20";
2022-05-26 05:06:05 +03:00
format = "pyproject";
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
2023-03-02 13:28:26 +03:00
hash = "sha256-9tYc8MlKZ1pzuGMipy827RoUJkU+C6UQz/Cex48UhLQ=";
2022-05-26 05:06:05 +03:00
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
aiohttp
aiofiles
biliass
dicttoxml
colorama
];
preFixup = ''
makeWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg ]})
'';
pythonImportsCheck = [ "yutto" ];
passthru.updateScript = nix-update-script { };
2022-05-26 05:06:05 +03:00
meta = with lib; {
description = "A Bilibili downloader";
homepage = "https://github.com/yutto-dev/yutto";
license = licenses.gpl3Only;
maintainers = with maintainers; [ linsui ];
};
}