python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / gallia / default.nix
blob785f6aae9fffd1063220a34cbf697edddb0b55d2
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , python3
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "gallia";
9   version = "1.0.3";
10   format = "pyproject";
12   src = fetchFromGitHub {
13     owner = "Fraunhofer-AISEC";
14     repo = pname;
15     rev = "refs/tags/v${version}";
16     hash = "sha256-CoZ3niGuEjcaSyIGc0MIy95v64nTbhgqW/0uz4a/f1o=";
17   };
19   nativeBuildInputs = with python3.pkgs; [
20     poetry-core
21   ];
23   propagatedBuildInputs = with python3.pkgs; [
24     aiofiles
25     aiohttp
26     aiosqlite
27     argcomplete
28     can
29     construct
30     msgspec
31     pydantic
32     tabulate
33     tomlkit
34     xdg
35     zstandard
36   ];
38   checkInputs = with python3.pkgs; [
39     pytestCheckHook
40   ];
42   postPatch = ''
43     substituteInPlace pyproject.toml \
44       --replace 'aiofiles = "^0.8.0"' 'aiofiles = ">=0.8.0"' \
45       --replace 'zstandard = "^0.17.0"' 'zstandard = "*"'
46   '';
48   pythonImportsCheck = [
49     "gallia"
50   ];
52   preCheck = ''
53     export PATH=$out/bin:$PATH
54   '';
56   meta = with lib; {
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;
62   };