Files
nixpkgs/pkgs/by-name/pl/plecost/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

46 lines
1.0 KiB
Nix

{
lib,
python3Packages,
fetchFromGitHub,
fetchpatch,
unstableGitUpdater,
}:
python3Packages.buildPythonApplication {
pname = "plecost";
version = "0-unstable-2022-08-03";
pyproject = true;
src = fetchFromGitHub {
owner = "iniqua";
repo = "plecost";
# Release is untagged
rev = "4895e345d71bffe956be43530632e303dd379a5f";
hash = "sha256-cXXFLoiLZpo3qiAPztavns4EkOG2aC6UKMf0N4Eun/w=";
};
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
aiohttp
async-timeout
termcolor
lxml
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "plecost_lib" ];
passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
meta = with lib; {
description = "Vulnerability fingerprinting and vulnerability finder for Wordpress blog engine";
mainProgram = "plecost";
homepage = "https://github.com/iniqua/plecost";
license = licenses.bsd3;
maintainers = with maintainers; [ emilytrau ];
};
}