depot/third_party/nixpkgs/pkgs/development/python-modules/awscrt/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

54 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
cmake,
perl,
stdenv,
gcc10,
CoreFoundation,
Security,
pythonOlder,
}:
buildPythonPackage rec {
pname = "awscrt";
version = "0.20.11";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-w9v7fxkJRXlS5kU3PnK2n5DFDEZe5qRtm73BKst5gDw=";
};
buildInputs = lib.optionals stdenv.isDarwin [
CoreFoundation
Security
];
# gcc <10 is not supported, LLVM on darwin is just fine
nativeBuildInputs =
[ cmake ]
++ lib.optionals (!stdenv.isDarwin && stdenv.isAarch64) [
gcc10
perl
];
dontUseCmakeConfigure = true;
pythonImportsCheck = [ "awscrt" ];
# 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";
changelog = "https://github.com/awslabs/aws-crt-python/releases/tag/v${version}";
description = "Python bindings for the AWS Common Runtime";
license = licenses.asl20;
maintainers = with maintainers; [ davegallant ];
};
}