{ final, prev, flakeInputs, sources, ... }: { postfix-mta-sts-resolver = flakeInputs.mach-nix.lib.${final.system}.buildPythonPackage { inherit (sources.postfix-mta-sts-resolver) src pname version; extras = "redis"; ignoreDataOutdated = true; requirements = '' redis>=4.2.0rc1 aiodns>=1.1.1 aiohttp>=3.4.4 PyYAML>=3.12 ''; providers._default = "nixpkgs,sdist"; overridesPost = [ (self: super: { frozenlist = super.frozenlist.overrideAttrs (oldAttrs: { nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ final.python310Packages.cython ]; }); }) ]; }; }