mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
108 lines
2.0 KiB
Nix
108 lines
2.0 KiB
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, fetchurl
|
|
, lib
|
|
, nixosTests
|
|
, python
|
|
, pythonOlder
|
|
|
|
# pythonPackages
|
|
, hatchling
|
|
, dnspython
|
|
, expiringdict
|
|
, publicsuffix2
|
|
, xmltodict
|
|
, geoip2
|
|
, urllib3
|
|
, requests
|
|
, imapclient
|
|
, dateparser
|
|
, mailsuite
|
|
, elasticsearch
|
|
, elasticsearch-dsl
|
|
, kafka-python
|
|
, tqdm
|
|
, lxml
|
|
, boto3
|
|
, msgraph-core
|
|
, azure-identity
|
|
, google-api-core
|
|
, google-api-python-client
|
|
, google-auth
|
|
, google-auth-httplib2
|
|
, google-auth-oauthlib
|
|
}:
|
|
|
|
let
|
|
dashboard = fetchurl {
|
|
url = "https://raw.githubusercontent.com/domainaware/parsedmarc/77331b55c54cb3269205295bd57d0ab680638964/grafana/Grafana-DMARC_Reports.json";
|
|
sha256 = "0wbihyqbb4ndjg79qs8088zgrcg88km8khjhv2474y7nzjzkf43i";
|
|
};
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "parsedmarc";
|
|
version = "8.4.2";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-6dP9zQI0jYiE+lUhmFBNp8Sv9povm9Pa4R4TuzAmEQk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace "elasticsearch<7.14.0" "elasticsearch"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
dnspython
|
|
expiringdict
|
|
publicsuffix2
|
|
xmltodict
|
|
geoip2
|
|
urllib3
|
|
requests
|
|
imapclient
|
|
dateparser
|
|
mailsuite
|
|
elasticsearch
|
|
elasticsearch-dsl
|
|
kafka-python
|
|
tqdm
|
|
lxml
|
|
boto3
|
|
msgraph-core
|
|
azure-identity
|
|
google-api-core
|
|
google-api-python-client
|
|
google-auth
|
|
google-auth-httplib2
|
|
google-auth-oauthlib
|
|
];
|
|
|
|
# no tests on PyPI, no tags on GitHub
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "parsedmarc" ];
|
|
|
|
passthru = {
|
|
inherit dashboard;
|
|
tests = nixosTests.parsedmarc;
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/domainaware/parsedmarc/blob/master/CHANGELOG.md#${lib.replaceStrings [ "." ] [ "" ] version}";
|
|
description = "Python module and CLI utility for parsing DMARC reports";
|
|
homepage = "https://domainaware.github.io/parsedmarc/";
|
|
maintainers = with lib.maintainers; [ talyz ];
|
|
license = lib.licenses.asl20;
|
|
};
|
|
}
|