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:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user