mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / frelatage / default.nix
blob1203cab94216dda7dc3fb55de849af5cb30bc4b4
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   numpy,
6   poetry-core,
7   pytestCheckHook,
8   pythonOlder,
9   timeout-decorator,
12 buildPythonPackage rec {
13   pname = "frelatage";
14   version = "0.1.0";
15   pyproject = true;
17   disabled = pythonOlder "3.9";
19   src = fetchFromGitHub {
20     owner = "Rog3rSm1th";
21     repo = "frelatage";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-eHVqp6govBV9FvSQyaZuEEImHQRs/mbLaW86RCvtDbM=";
24   };
26   nativeBuildInputs = [ poetry-core ];
28   propagatedBuildInputs = [
29     numpy
30     timeout-decorator
31   ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   pythonImportsCheck = [ "frelatage" ];
37   meta = with lib; {
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 ];
43   };