nixpkgs/pkgs/development/python-modules/frelatage/default.nix
Fabian Affolter 1192f82823 python311Packages.frelatage: init at 0.1.0
Greybox and Coverage-based library to fuzz Python applications

https://github.com/Rog3rSm1th/frelatage
2024-01-12 00:01:52 +01:00

50 lines
965 B
Nix

{ 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 ];
};
}