2022-02-20 05:27:41 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, cmake
|
|
|
|
, perl
|
|
|
|
, stdenv
|
|
|
|
, gcc10
|
|
|
|
, CoreFoundation
|
|
|
|
, Security
|
|
|
|
, pythonOlder
|
|
|
|
}:
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "awscrt";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "0.13.14";
|
2022-02-20 05:27:41 +00:00
|
|
|
format = "setuptools";
|
2021-05-20 23:08:51 +00:00
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-08-12 12:06:08 +00:00
|
|
|
hash = "sha256-K2x0Up3H6kIWcYeWvVegd1CkTjq8RoM0AOm0SX5u6wQ=";
|
2022-02-20 05:27:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
CoreFoundation
|
|
|
|
Security
|
|
|
|
];
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
# Required to suppress -Werror
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/39687
|
2022-02-20 05:27:41 +00:00
|
|
|
hardeningDisable = lib.optionals stdenv.cc.isClang [
|
|
|
|
"strictoverflow"
|
|
|
|
];
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "extra_link_args += ['-Wl,-fatal_warnings']" ""
|
|
|
|
'';
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
# gcc <10 is not supported, LLVM on darwin is just fine
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
] ++ lib.optionals (!stdenv.isDarwin && stdenv.isAarch64) [
|
|
|
|
gcc10
|
|
|
|
perl
|
|
|
|
];
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"awscrt"
|
|
|
|
];
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
# Unable to import test module
|
|
|
|
# https://github.com/awslabs/aws-crt-python/issues/281
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|