mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
python3Packages.s3fs: add missing fsspec dependency
This commit is contained in:
parent
8a6baaecb5
commit
f374bf6c19
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, docutils, boto3 }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, docutils, boto3, fsspec }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "s3fs";
|
||||
|
@ -10,7 +10,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
buildInputs = [ docutils ];
|
||||
propagatedBuildInputs = [ boto3 ];
|
||||
propagatedBuildInputs = [ boto3 fsspec ];
|
||||
|
||||
# Depends on `moto` which has a long dependency chain with exact
|
||||
# version requirements that can't be made to work with current
|
||||
|
|
Loading…
Reference in a new issue