python3Packages.botocore: add passthru.optional-dependencies.crt

This commit is contained in:
Anthony Roussel 2023-11-27 12:18:20 +01:00 committed by Martin Weinelt
parent 3549cdfb56
commit 24f657d938
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -6,6 +6,7 @@
, urllib3
, pytestCheckHook
, jsonschema
, awscrt
}:
buildPythonPackage rec {
@ -41,6 +42,10 @@ buildPythonPackage rec {
"botocore"
];
passthru.optional-dependencies = {
crt = [ awscrt ];
};
meta = with lib; {
homepage = "https://github.com/boto/botocore";
changelog = "https://github.com/boto/botocore/blob/${version}/CHANGELOG.rst";