diff options
Diffstat (limited to 'overlays/postfix-mta-sts-resolver.nix')
-rw-r--r-- | overlays/postfix-mta-sts-resolver.nix | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/overlays/postfix-mta-sts-resolver.nix b/overlays/postfix-mta-sts-resolver.nix index d8b1ff00..22fc4118 100644 --- a/overlays/postfix-mta-sts-resolver.nix +++ b/overlays/postfix-mta-sts-resolver.nix | |||
@@ -2,7 +2,7 @@ | |||
2 | { | 2 | { |
3 | postfix-mta-sts-resolver = flakeInputs.mach-nix.lib.${final.system}.buildPythonPackage { | 3 | postfix-mta-sts-resolver = flakeInputs.mach-nix.lib.${final.system}.buildPythonPackage { |
4 | inherit (sources.postfix-mta-sts-resolver) src pname version; | 4 | inherit (sources.postfix-mta-sts-resolver) src pname version; |
5 | extras = "redis,uvloop"; | 5 | # extras = "redis,uvloop"; |
6 | ignoreDataOutdated = true; | 6 | ignoreDataOutdated = true; |
7 | 7 | ||
8 | requirements = '' | 8 | requirements = '' |
@@ -13,17 +13,19 @@ | |||
13 | PyYAML>=3.12 | 13 | PyYAML>=3.12 |
14 | ''; | 14 | ''; |
15 | 15 | ||
16 | providers._default = "nixpkgs,sdist"; | 16 | providers.cffi = "nixpkgs"; |
17 | 17 | ||
18 | overridesPost = [ | 18 | # providers._default = "nixpkgs,sdist"; |
19 | (self: super: { | ||
20 | frozenlist = super.frozenlist.overrideAttrs (oldAttrs: { | ||
21 | nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ final.python310Packages.cython ]; | ||
22 | }); | ||
23 | }) | ||
24 | ]; | ||
25 | 19 | ||
26 | _.pyparsing.buildInputs.add = with final.python310Packages; [ flit-core ]; | 20 | # overridesPost = [ |
27 | _.idna.buildInputs.add = with final.python310Packages; [ flit-core ]; | 21 | # (self: super: { |
22 | # frozenlist = super.frozenlist.overrideAttrs (oldAttrs: { | ||
23 | # nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ final.python310Packages.cython ]; | ||
24 | # }); | ||
25 | # }) | ||
26 | # ]; | ||
27 | |||
28 | # _.pyparsing.buildInputs.add = with final.python310Packages; [ flit-core ]; | ||
29 | # _.idna.buildInputs.add = with final.python310Packages; [ flit-core ]; | ||
28 | }; | 30 | }; |
29 | } | 31 | } |