{ 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,uvloop"; ignoreDataOutdated = true; requirements = '' redis>=4.2.0rc1 uvloop>=0.11.0 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 ]; }); }) ]; _.pyparsing.buildInputs.add = with final.python310Packages; [ flit-core ]; _.idna.buildInputs.add = with final.python310Packages; [ flit-core ]; }; }