23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
59 lines
959 B
Nix
59 lines
959 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 = [
|
|
"requests"
|
|
];
|
|
|
|
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";
|
|
homepage = "https://github.com/Owez/yark";
|
|
changelog = "https://github.com/Owez/yark/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|