about summary refs log tree commit diff
path: root/pkgs/development/python-modules/botocore/default.nix
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-07-19 18:38:58 -0700
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-07-28 12:13:30 +0200
commit57040932807c563a4ea32b27f2ea8986aa92d751 (patch)
treef14c1d7b81c09dbd955a6100fde236ef53cb7fad /pkgs/development/python-modules/botocore/default.nix
parent4e7b3a4137edac2ee054f7a915473ca099a051d7 (diff)
python310Packages.botocore: 1.29.79 -> 1.31.9
Diffstat (limited to 'pkgs/development/python-modules/botocore/default.nix')
-rw-r--r--pkgs/development/python-modules/botocore/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index f6d62659cdda4..303074c1b3ef1 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -3,7 +3,6 @@
 , fetchPypi
 , python-dateutil
 , jmespath
-, docutils
 , urllib3
 , pytestCheckHook
 , jsonschema
@@ -11,17 +10,16 @@
 
 buildPythonPackage rec {
   pname = "botocore";
-  version = "1.29.79"; # N.B: if you change this, change boto3 and awscli to a matching version
+  version = "1.31.9"; # N.B: if you change this, change boto3 and awscli to a matching version
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-x97UQGK+07kolEz7CeFXjtP+0OTJjeTyM/PCBWqNSR4=";
+    hash = "sha256-vYSdOslfF4E4Xtgx11OgSj7IcKWdZZgXWq7dcdwrr18=";
   };
 
   propagatedBuildInputs = [
     python-dateutil
     jmespath
-    docutils
     urllib3
   ];
 
@@ -30,8 +28,6 @@ buildPythonPackage rec {
     jsonschema
   ];
 
-  doCheck = true;
-
   disabledTestPaths = [
     # Integration tests require networking
     "tests/integration"