python311Packages.frelatage: init at 0.1.0

Greybox and Coverage-based library to fuzz Python applications

https://github.com/Rog3rSm1th/frelatage
This commit is contained in:
Fabian Affolter
2024-01-12 00:01:52 +01:00
parent 23904e5820
commit 1192f82823
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, numpy
, poetry-core
, pytestCheckHook
, pythonOlder
, timeout-decorator
}:
buildPythonPackage rec {
pname = "frelatage";
version = "0.1.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Rog3rSm1th";
repo = "frelatage";
rev = "refs/tags/v${version}";
hash = "sha256-eHVqp6govBV9FvSQyaZuEEImHQRs/mbLaW86RCvtDbM=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
numpy
timeout-decorator
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"frelatage"
];
meta = with lib; {
description = "Greybox and Coverage-based library to fuzz Python applications";
homepage = "https://github.com/Rog3rSm1th/frelatage";
changelog = "https://github.com/Rog3rSm1th/frelatage/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -4273,6 +4273,8 @@ self: super: with self; {
freezegun = callPackage ../development/python-modules/freezegun { };
frelatage = callPackage ../development/python-modules/frelatage { };
frida-python = callPackage ../development/python-modules/frida-python { };
frigidaire = callPackage ../development/python-modules/frigidaire { };