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
60 lines
1.2 KiB
Nix
60 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
waymore,
|
|
testers,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "waymore";
|
|
version = "6.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xnl-h4ck3r";
|
|
repo = "waymore";
|
|
tag = "v${version}";
|
|
hash = "sha256-eoq1F6P3ZMb+O+SYmVhV3JHJMNbfcdyCnn4wy17RBv0=";
|
|
};
|
|
|
|
preBuild = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
pythonRemoveDeps = [
|
|
# python already provides urllib.parse
|
|
"urlparse3"
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
requests
|
|
termcolor
|
|
pyyaml
|
|
psutil
|
|
uritools
|
|
tldextract
|
|
];
|
|
|
|
pythonImportsCheck = [ "waymore.waymore" ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = waymore;
|
|
command = "waymore --version";
|
|
version = "Waymore - v${version}";
|
|
};
|
|
|
|
meta = {
|
|
description = "Find way more from the Wayback Machine";
|
|
homepage = "https://github.com/xnl-h4ck3r/waymore";
|
|
changelog = "https://github.com/xnl-h4ck3r/waymore/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ genga898 ];
|
|
mainProgram = "waymore";
|
|
};
|
|
}
|