3
0
Fork 0
forked from mirrors/nixpkgs

python38Packages.awscrt: 0.12.3 -> 0.12.4

This commit is contained in:
R. RyanTM 2021-10-02 04:28:02 +00:00 committed by Sandro Jäckel
parent a7afddb159
commit bbaa9914f8
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 7 additions and 6 deletions

View file

@ -1,11 +1,10 @@
{ lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, darwin }:
{ lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, CoreFoundation, Security }:
buildPythonPackage rec {
pname = "awscrt";
version = "0.12.3";
version = "0.12.4";
buildInputs = lib.optionals stdenv.isDarwin
(with darwin.apple_sdk.frameworks; [ CoreFoundation Security ]);
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
# Required to suppress -Werror
# https://github.com/NixOS/nixpkgs/issues/39687
@ -23,7 +22,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "441262c36b450286132fde7f110823f7ae7ae909c0f6483a0a2d56150b62f2b5";
sha256 = "6ad69336bc5277f501bd7e33f82e11db2665370c7d279496ee39fe2f369baeb2";
};
meta = with lib; {

View file

@ -739,7 +739,9 @@ in {
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
awscrt = callPackage ../development/python-modules/awscrt { };
awscrt = callPackage ../development/python-modules/awscrt {
inherit (pkgs.darwin.apple_sdk.frameworks) CoreFoundation Security;
};
awsiotpythonsdk = callPackage ../development/python-modules/awsiotpythonsdk { };