12 buildPythonPackage rec {
17 disabled = pythonOlder "3.9";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-eHVqp6govBV9FvSQyaZuEEImHQRs/mbLaW86RCvtDbM=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = [
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "frelatage" ];
38 description = "Greybox and Coverage-based library to fuzz Python applications";
39 homepage = "https://github.com/Rog3rSm1th/frelatage";
40 changelog = "https://github.com/Rog3rSm1th/frelatage/releases/tag/v${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ fab ];