about summary refs log tree commit diff
path: root/pkgs/development/python-modules/botocore/default.nix
diff options
context:
space:
mode:
authorAnthony Roussel <anthony@roussel.dev>2023-11-27 12:18:20 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-20 20:45:44 +0100
commit24f657d938f78f40e4feb18f46baac1694e5b303 (patch)
tree64db5139651db8860899b5b8d613e360245e5cfc /pkgs/development/python-modules/botocore/default.nix
parent3549cdfb56a191c020ec12cd50c76a6fba165f80 (diff)
python3Packages.botocore: add passthru.optional-dependencies.crt
Diffstat (limited to 'pkgs/development/python-modules/botocore/default.nix')
-rw-r--r--pkgs/development/python-modules/botocore/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index 202b7fb62c6b3..ea7ea23fc40d6 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -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";