Skip to content

Commit

Permalink
Merge pull request #1284 from bzadm/master
Browse files Browse the repository at this point in the history
pycurl: Add curl as a depedency
  • Loading branch information
adisbladis authored Oct 26, 2023
2 parents d70fd3e + 1217cfb commit 49ba4ae
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions overrides/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2016,6 +2016,13 @@ lib.composeManyExtensions [
}
);

pycurl = super.pycurl.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.curl ];
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pkgs.curl ];
}
);

pydantic-core = super.pydantic-core.override {
preferWheel = true;
};
Expand Down

0 comments on commit 49ba4ae

Please sign in to comment.