mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 17:21:39 -05:00
Merge pull request #641 from schlarpc/master
overrides.awscrt: Add override to include cmake
This commit is contained in:
commit
749fc8ebd4
1 changed files with 7 additions and 0 deletions
|
@ -163,6 +163,13 @@ lib.composeManyExtensions [
|
||||||
attr = "flit-core";
|
attr = "flit-core";
|
||||||
} else super.argon2-cffi;
|
} else super.argon2-cffi;
|
||||||
|
|
||||||
|
awscrt = super.awscrt.overridePythonAttrs (
|
||||||
|
old: {
|
||||||
|
nativeBuildInputs = [ pkgs.cmake ] ++ old.nativeBuildInputs;
|
||||||
|
dontUseCmakeConfigure = true;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
bcrypt = super.bcrypt.overridePythonAttrs (
|
bcrypt = super.bcrypt.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libffi ];
|
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.libffi ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue