7 python3.pkgs.buildPythonApplication rec {
12 src = fetchFromGitHub {
13 owner = "Fraunhofer-AISEC";
15 rev = "refs/tags/v${version}";
16 hash = "sha256-CoZ3niGuEjcaSyIGc0MIy95v64nTbhgqW/0uz4a/f1o=";
19 nativeBuildInputs = with python3.pkgs; [
23 propagatedBuildInputs = with python3.pkgs; [
38 checkInputs = with python3.pkgs; [
43 substituteInPlace pyproject.toml \
44 --replace 'aiofiles = "^0.8.0"' 'aiofiles = ">=0.8.0"' \
45 --replace 'zstandard = "^0.17.0"' 'zstandard = "*"'
48 pythonImportsCheck = [
53 export PATH=$out/bin:$PATH
57 description = "Pentesting framework with the focus on the automotive domain";
58 homepage = "https://github.com/Fraunhofer-AISEC/gallia";
59 license = with licenses; [ asl20 ];
60 maintainers = with maintainers; [ fab ];
61 broken = stdenv.isDarwin;