plecost: init at 1.1.4

This commit is contained in:
Emily Trau 2022-08-03 18:55:57 +10:00
parent dfda3c3e04
commit 6d77453018
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ lib, python3Packages, fetchFromGitHub, fetchpatch }:
python3Packages.buildPythonApplication rec {
pname = "plecost";
version = "1.1.4";
src = fetchFromGitHub {
owner = "iniqua";
repo = pname;
# Release is untagged
rev = "aa40e504bee95cf731f0cc9f228bcf5fdfbe6194";
sha256 = "K8ESI2EOqH9zBDfSKgVcTKjCMdRhBiwltIbXDt1vF+M=";
};
patches = [
# Fix compatability with aiohttp 3.x
# Merged - pending next release
(fetchpatch {
url = "https://github.com/iniqua/plecost/pull/34/commits/c09e7fab934f136f8fbc5f219592cf5fec151cf9.patch";
sha256 = "sha256-G7Poo3+d+PQTrg8PCrmsG6nMHt8CXgiuAu+ZNvK8oiw=";
})
];
propagatedBuildInputs = with python3Packages; [
aiohttp
async-timeout
termcolor
lxml
];
# Project has no tests
doCheck = false;
meta = with lib; {
description = "Vulnerability fingerprinting and vulnerability finder for Wordpress blog engine";
homepage = "https://github.com/iniqua/plecost";
license = licenses.bsd3;
maintainers = with maintainers; [ emilytrau ];
};
}

View file

@ -9747,6 +9747,8 @@ with pkgs;
playbar2 = libsForQt5.callPackage ../applications/audio/playbar2 { };
plecost = callPackage ../tools/security/plecost { };
plujain-ramp = callPackage ../applications/audio/plujain-ramp { };
inherit (callPackage ../servers/plik { })