about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/trustymail/default.nix
blob: 11133548bbd304b6490f29485836c557fdf91c26 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ lib
, fetchFromGitHub
, python3
}:

python3.pkgs.buildPythonApplication rec {
  pname = "trustymail";
  version = "0.8.3";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "cisagov";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-aFXz78Gviki0yIcnn2EgR3mHmt0wMoY5u6RoT6zQc1Y=";
  };

  postPatch = ''
    substituteInPlace pytest.ini \
      --replace " --cov" ""
  '';

  propagatedBuildInputs = with python3.pkgs; [
    dnspython
    docopt
    publicsuffixlist
    pydns
    pyspf
    requests
  ] ++ publicsuffixlist.optional-dependencies.update;

  nativeCheckInputs = with python3.pkgs; [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "trustymail"
  ];

  meta = with lib; {
    description = "Tool to scan domains and return data based on trustworthy email best practices";
    mainProgram = "trustymail";
    homepage = "https://github.com/cisagov/trustymail";
    changelog = "https://github.com/cisagov/trustymail/releases/tag/v${version}";
    license = with licenses; [ cc0 ];
    maintainers = with maintainers; [ fab ];
  };
}