python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ssh-audit / default.nix
blob34d39390b4384aabdf48d4d98e2fed418e5187f6
1 { lib, fetchFromGitHub, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "ssh-audit";
5   version = "2.5.0";
7   src = fetchFromGitHub {
8     owner = "jtesta";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "0ks1zr0ksma285sm2dyy0nsbrkpssdk4mdzc3srr4mcyd6v927jd";
12   };
14   checkInputs = with python3Packages; [
15     pytestCheckHook
16   ];
18   meta = with lib; {
19     description = "Tool for ssh server auditing";
20     homepage = "https://github.com/jtesta/ssh-audit";
21     license = licenses.mit;
22     platforms = platforms.all;
23     maintainers = with maintainers; [ tv SuperSandro2000 ];
24   };