Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / awscrt / default.nix
blobd5d0cb5891719b50411834f41b0faae3e5b01d48
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cmake
5 , perl
6 , stdenv
7 , gcc10
8 , CoreFoundation
9 , Security
10 , pythonOlder
13 buildPythonPackage rec {
14   pname = "awscrt";
15   version = "0.20.9";
16   format = "setuptools";
18   disabled = pythonOlder "3.7";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-JDeFrJ7mSUXgR5wjhDJVRfKVl1dXQ86Ew3FVbRAU5j4=";
23   };
25   buildInputs = lib.optionals stdenv.isDarwin [
26     CoreFoundation
27     Security
28   ];
30   # gcc <10 is not supported, LLVM on darwin is just fine
31   nativeBuildInputs = [
32     cmake
33   ] ++ lib.optionals (!stdenv.isDarwin && stdenv.isAarch64) [
34     gcc10
35     perl
36   ];
38   dontUseCmakeConfigure = true;
40   pythonImportsCheck = [
41     "awscrt"
42   ];
44   # Unable to import test module
45   # https://github.com/awslabs/aws-crt-python/issues/281
46   doCheck = false;
48   meta = with lib; {
49     homepage = "https://github.com/awslabs/aws-crt-python";
50     changelog = "https://github.com/awslabs/aws-crt-python/releases/tag/v${version}";
51     description = "Python bindings for the AWS Common Runtime";
52     license = licenses.asl20;
53     maintainers = with maintainers; [ davegallant ];
54   };