Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / frelatage / default.nix
blob519e981b69998b7fab7ba111d3098085e4305b8c
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , numpy
5 , poetry-core
6 , pytestCheckHook
7 , pythonOlder
8 , timeout-decorator
9 }:
11 buildPythonPackage rec {
12   pname = "frelatage";
13   version = "0.1.0";
14   pyproject = true;
16   disabled = pythonOlder "3.9";
18   src = fetchFromGitHub {
19     owner = "Rog3rSm1th";
20     repo = "frelatage";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-eHVqp6govBV9FvSQyaZuEEImHQRs/mbLaW86RCvtDbM=";
23   };
25   nativeBuildInputs = [
26     poetry-core
27   ];
29   propagatedBuildInputs = [
30     numpy
31     timeout-decorator
32   ];
34   nativeCheckInputs = [
35     pytestCheckHook
36   ];
38   pythonImportsCheck = [
39     "frelatage"
40   ];
42   meta = with lib; {
43     description = "Greybox and Coverage-based library to fuzz Python applications";
44     homepage = "https://github.com/Rog3rSm1th/frelatage";
45     changelog = "https://github.com/Rog3rSm1th/frelatage/releases/tag/v${version}";
46     license = licenses.mit;
47     maintainers = with maintainers; [ fab ];
48   };