3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/awscrt/default.nix

34 lines
1,000 B
Nix
Raw Normal View History

2021-05-10 02:58:26 +01:00
{ lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, darwin }:
buildPythonPackage rec {
pname = "awscrt";
version = "0.11.13";
buildInputs = lib.optionals stdenv.isDarwin
2021-05-13 02:16:15 +01:00
(with darwin.apple_sdk.frameworks; [ 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";
nativeBuildInputs = [ cmake ] ++ lib.optionals stdenv.isAarch64 ([ gcc10 perl ]);
dontUseCmakeConfigure = true;
# Unable to import test module
# https://github.com/awslabs/aws-crt-python/issues/281
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-G/bf2AzWp8AHL4of0zfX3jIYyTtmTLBIC2ZKiMi19c0=";
};
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 ];
};
}