python3Packages.s3fs: add missing fsspec dependency

This commit is contained in:
Jonathan Ringer 2020-01-07 13:33:49 -08:00 committed by Jon
parent 8a6baaecb5
commit f374bf6c19
1 changed files with 2 additions and 2 deletions

View File

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