2021-10-02 05:28:02 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, CoreFoundation, Security }:
|
2021-05-10 02:58:26 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "awscrt";
|
2021-11-14 10:11:31 +00:00
|
|
|
version = "0.12.6";
|
2021-05-10 02:58:26 +01:00
|
|
|
|
2021-10-02 05:28:02 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
|
2021-05-10 02:58:26 +01:00
|
|
|
|
|
|
|
# Required to suppress -Werror
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/39687
|
|
|
|
hardeningDisable = lib.optional stdenv.cc.isClang "strictoverflow";
|
|
|
|
|
2021-06-03 00:09:01 +01:00
|
|
|
nativeBuildInputs = [ cmake ] ++
|
|
|
|
# gcc <10 is not supported, LLVM on darwin is just fine
|
|
|
|
lib.optionals (!stdenv.isDarwin && stdenv.isAarch64) [ gcc10 perl ];
|
2021-05-10 02:58:26 +01:00
|
|
|
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
|
|
|
|
# Unable to import test module
|
|
|
|
# https://github.com/awslabs/aws-crt-python/issues/281
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-14 10:11:31 +00:00
|
|
|
sha256 = "65d71b4cd78165bea962dfbda361b47b9b5a6198d8074046b8667da9653d0752";
|
2021-05-10 02:58:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/awslabs/aws-crt-python";
|
|
|
|
description = "Python bindings for the AWS Common Runtime";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ davegallant ];
|
|
|
|
};
|
|
|
|
}
|