Merge pull request #1284 from bzadm/master

pycurl: Add curl as a depedency
This commit is contained in:
adisbladis 2023-10-26 16:12:08 +13:00 committed by GitHub
commit 49ba4aea84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};