python311Packages.awscrt: 0.19.17 -> 0.19.18

https://github.com/awslabs/aws-crt-python/compare/v0.19.17...v0.19.18
This commit is contained in:
Anthony Roussel 2023-11-29 06:49:25 +01:00
parent b903264bef
commit b1f57d8069
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

View File

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "awscrt";
version = "0.19.17";
version = "0.19.18";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-v3CANF5cfUG31AiqAFpRmnLeOfGm7I8H+VIUTo6qVJI=";
hash = "sha256-NQtu/Y6+4ILqPz5SxZo8PsWUza8B24tIU9zrn+yQyJ0=";
};
buildInputs = lib.optionals stdenv.isDarwin [
@ -27,12 +27,6 @@ buildPythonPackage rec {
Security
];
# Required to suppress -Werror
# https://github.com/NixOS/nixpkgs/issues/39687
hardeningDisable = lib.optionals stdenv.cc.isClang [
"strictoverflow"
];
# gcc <10 is not supported, LLVM on darwin is just fine
nativeBuildInputs = [
cmake