lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #140235 from r-ryantm/auto-update/python38Packages.awscrt

authored by

Sandro and committed by
GitHub
53020b2a 511110af

+7 -6
+4 -5
pkgs/development/python-modules/awscrt/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, darwin }: 1 + { lib, buildPythonPackage, fetchPypi, cmake, perl, stdenv, gcc10, CoreFoundation, Security }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "awscrt"; 5 - version = "0.12.3"; 5 + version = "0.12.4"; 6 6 7 - buildInputs = lib.optionals stdenv.isDarwin 8 - (with darwin.apple_sdk.frameworks; [ CoreFoundation Security ]); 7 + buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ]; 9 8 10 9 # Required to suppress -Werror 11 10 # https://github.com/NixOS/nixpkgs/issues/39687 ··· 23 22 24 23 src = fetchPypi { 25 24 inherit pname version; 26 - sha256 = "441262c36b450286132fde7f110823f7ae7ae909c0f6483a0a2d56150b62f2b5"; 25 + sha256 = "6ad69336bc5277f501bd7e33f82e11db2665370c7d279496ee39fe2f369baeb2"; 27 26 }; 28 27 29 28 meta = with lib; {
+3 -1
pkgs/top-level/python-packages.nix
··· 741 741 742 742 aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { }; 743 743 744 - awscrt = callPackage ../development/python-modules/awscrt { }; 744 + awscrt = callPackage ../development/python-modules/awscrt { 745 + inherit (pkgs.darwin.apple_sdk.frameworks) CoreFoundation Security; 746 + }; 745 747 746 748 awsiotpythonsdk = callPackage ../development/python-modules/awsiotpythonsdk { }; 747 749