Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
958 B
Nix
45 lines
958 B
Nix
{
|
|
python3,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
let
|
|
python = python3.override {
|
|
self = python;
|
|
packageOverrides = self: super: {
|
|
# https://github.com/domainaware/parsedmarc/issues/464
|
|
msgraph-core = super.msgraph-core.overridePythonAttrs (old: rec {
|
|
version = "0.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoftgraph";
|
|
repo = "msgraph-sdk-python-core";
|
|
rev = "v${version}";
|
|
hash = "sha256-eRRlG3GJX3WeKTNJVWgNTTHY56qiUGOlxtvEZ2xObLA=";
|
|
};
|
|
|
|
nativeBuildInputs = with self; [
|
|
flit-core
|
|
];
|
|
|
|
propagatedBuildInputs = with self; [
|
|
requests
|
|
];
|
|
|
|
nativeCheckInputs = with self; [
|
|
pytestCheckHook
|
|
responses
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/integration"
|
|
];
|
|
|
|
pythonImportsCheck = [ "msgraph.core" ];
|
|
});
|
|
};
|
|
};
|
|
in
|
|
with python.pkgs;
|
|
toPythonApplication parsedmarc
|