python3Packages.awscrt: fix darwin build
This commit is contained in:
parent
5643714dea
commit
21dc93570f
1 changed files with 5 additions and 1 deletions
|
@ -33,6 +33,11 @@ buildPythonPackage rec {
|
||||||
"strictoverflow"
|
"strictoverflow"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "extra_link_args += ['-Wl,-fatal_warnings']" ""
|
||||||
|
'';
|
||||||
|
|
||||||
# gcc <10 is not supported, LLVM on darwin is just fine
|
# gcc <10 is not supported, LLVM on darwin is just fine
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
|
@ -52,7 +57,6 @@ buildPythonPackage rec {
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
homepage = "https://github.com/awslabs/aws-crt-python";
|
homepage = "https://github.com/awslabs/aws-crt-python";
|
||||||
description = "Python bindings for the AWS Common Runtime";
|
description = "Python bindings for the AWS Common Runtime";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
Loading…
Reference in a new issue