···1-{ stdenv, buildPythonPackage, fetchPypi, docutils, boto3 }:
23buildPythonPackage rec {
4 pname = "s3fs";
···10 };
1112 buildInputs = [ docutils ];
13- propagatedBuildInputs = [ boto3 ];
1415 # Depends on `moto` which has a long dependency chain with exact
16 # version requirements that can't be made to work with current
···1+{ stdenv, buildPythonPackage, fetchPypi, docutils, boto3, fsspec }:
23buildPythonPackage rec {
4 pname = "s3fs";
···10 };
1112 buildInputs = [ docutils ];
13+ propagatedBuildInputs = [ boto3 fsspec ];
1415 # Depends on `moto` which has a long dependency chain with exact
16 # version requirements that can't be made to work with current