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
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "holehe";
|
|
version = "0-unstable-2023-05-18";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "megadose";
|
|
repo = "holehe";
|
|
rev = "bec2f582c286a4e32de4dfc1f241297f60bd8713";
|
|
hash = "sha256-dLfuQew6cqb32r9AMubuo51A7TeaIafEdZs0OrQF7Gg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# https://github.com/megadose/holehe/pull/178
|
|
substituteInPlace setup.py \
|
|
--replace-fail "bs4" "beautifulsoup4"
|
|
'';
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
beautifulsoup4
|
|
colorama
|
|
httpx
|
|
termcolor
|
|
tqdm
|
|
trio
|
|
];
|
|
|
|
# Project has no test
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"holehe"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "CLI to check if the mail is used on different sites";
|
|
mainProgram = "holehe";
|
|
homepage = "https://github.com/megadose/holehe";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|