summaryrefslogtreecommitdiff
path: root/overlays/postfix-mta-sts-resolver.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-11-07 22:43:26 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2022-11-07 22:43:26 +0100
commit5b3c59bf26ff8b9c38f3ca78451b42ad0014a585 (patch)
tree515f43dc3a8543f6ca2e7afdd565885e8903e7e6 /overlays/postfix-mta-sts-resolver.nix
parentc80473dbef4ca003642322e7243affe52eef4b06 (diff)
downloadnixos-5b3c59bf26ff8b9c38f3ca78451b42ad0014a585.tar
nixos-5b3c59bf26ff8b9c38f3ca78451b42ad0014a585.tar.gz
nixos-5b3c59bf26ff8b9c38f3ca78451b42ad0014a585.tar.bz2
nixos-5b3c59bf26ff8b9c38f3ca78451b42ad0014a585.tar.xz
nixos-5b3c59bf26ff8b9c38f3ca78451b42ad0014a585.zip
...
Diffstat (limited to 'overlays/postfix-mta-sts-resolver.nix')
-rw-r--r--overlays/postfix-mta-sts-resolver.nix24
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}