fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
61 lines
1,018 B
Nix
61 lines
1,018 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
colorama,
|
|
fetchPypi,
|
|
flask,
|
|
poetry-core,
|
|
progress,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
requests,
|
|
yt-dlp,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yark";
|
|
version = "1.2.10";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Y1fWHpvrqGuBPyJ2dO2y0W2zhEgcTJABtkOAoZ7uyZU=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"flask"
|
|
"requests"
|
|
"yt-dlp"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
colorama
|
|
flask
|
|
progress
|
|
requests
|
|
yt-dlp
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "yark" ];
|
|
|
|
meta = with lib; {
|
|
description = "Module for YouTube archiving";
|
|
mainProgram = "yark";
|
|
homepage = "https://github.com/Owez/yark";
|
|
changelog = "https://github.com/Owez/yark/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|