Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
replaceVars,
|
|
ffmpeg,
|
|
installShellFiles,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "you-get";
|
|
version = "0.4.1700";
|
|
pyproject = true;
|
|
|
|
# Tests aren't packaged, but they all hit the real network so
|
|
# probably aren't suitable for a build environment anyway.
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-XNIUkgEqRGrBtSxvfkSUSqxltZ6ZdkWoTc9kz4BD6Zw=";
|
|
};
|
|
|
|
patches = [
|
|
(replaceVars ./ffmpeg-path.patch {
|
|
ffmpeg = "${lib.getBin ffmpeg}/bin/ffmpeg";
|
|
ffprobe = "${lib.getBin ffmpeg}/bin/ffmpeg";
|
|
version = lib.getVersion ffmpeg;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd you-get \
|
|
--zsh contrib/completion/_you-get \
|
|
--fish contrib/completion/you-get.fish \
|
|
--bash contrib/completion/you-get-completion.bash
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"you_get"
|
|
];
|
|
|
|
meta = {
|
|
description = "Tiny command line utility to download media contents from the web";
|
|
homepage = "https://you-get.org";
|
|
changelog = "https://github.com/soimort/you-get/raw/v${version}/CHANGELOG.rst";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ ryneeverett ];
|
|
mainProgram = "you-get";
|
|
};
|
|
}
|