forked from mirrors/nixpkgs
python38Packages.awscrt: 0.12.3 -> 0.12.4
This commit is contained in:
parent
a7afddb159
commit
bbaa9914f8
|
@ -1,11 +1,10 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, darwin }:
|
{ lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, CoreFoundation, Security }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "awscrt";
|
pname = "awscrt";
|
||||||
version = "0.12.3";
|
version = "0.12.4";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ];
|
||||||
(with darwin.apple_sdk.frameworks; [ CoreFoundation Security ]);
|
|
||||||
|
|
||||||
# Required to suppress -Werror
|
# Required to suppress -Werror
|
||||||
# https://github.com/NixOS/nixpkgs/issues/39687
|
# https://github.com/NixOS/nixpkgs/issues/39687
|
||||||
|
@ -23,7 +22,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "441262c36b450286132fde7f110823f7ae7ae909c0f6483a0a2d56150b62f2b5";
|
sha256 = "6ad69336bc5277f501bd7e33f82e11db2665370c7d279496ee39fe2f369baeb2";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
|
@ -739,7 +739,9 @@ in {
|
||||||
|
|
||||||
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
|
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 { };
|
awsiotpythonsdk = callPackage ../development/python-modules/awsiotpythonsdk { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue