depot/third_party/nixpkgs/pkgs/development/python-modules/checkdmarc/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

68 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
cryptography,
dnspython,
expiringdict,
fetchFromGitHub,
hatchling,
publicsuffixlist,
pyleri,
iana-etc,
pytestCheckHook,
pythonOlder,
requests,
timeout-decorator,
}:
buildPythonPackage rec {
pname = "checkdmarc";
version = "4.8.4";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "domainaware";
repo = "checkdmarc";
rev = "refs/tags/${version}";
hash = "sha256-NNB5dYQzzdNapjP4mtpCW08BzfZ+FFRESUtpxCOzrdk=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
cryptography
dnspython
expiringdict
publicsuffixlist
pyleri
requests
timeout-decorator
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "checkdmarc" ];
pytestFlagsArray = [ "tests.py" ];
disabledTests = [
# Tests require network access
"testDMARCPctLessThan100Warning"
"testSPFMissingARecord"
"testSPFMissingMXRecord"
"testSplitSPFRecord"
"testTooManySPFDNSLookups"
"testTooManySPFVoidDNSLookups"
];
meta = with lib; {
description = "Parser for SPF and DMARC DNS records";
mainProgram = "checkdmarc";
homepage = "https://github.com/domainaware/checkdmarc";
changelog = "https://github.com/domainaware/checkdmarc/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}