blob: d0c52c85a454dae4e728e6fd92d38b32734c9465 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
numpy,
poetry-core,
pytestCheckHook,
timeout-decorator,
}:
buildPythonPackage rec {
pname = "frelatage";
version = "0.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Rog3rSm1th";
repo = "frelatage";
tag = "v${version}";
hash = "sha256-eHVqp6govBV9FvSQyaZuEEImHQRs/mbLaW86RCvtDbM=";
};
pythonRelaxDeps = [ "numpy" ];
build-system = [ poetry-core ];
dependencies = [
numpy
timeout-decorator
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "frelatage" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|