2021-02-05 17:12:51 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, docutils, aiobotocore, fsspec }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "s3fs";
|
2021-03-09 03:18:52 +00:00
|
|
|
version = "0.5.2";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-09 03:18:52 +00:00
|
|
|
sha256 = "87e5210415db17b9de18c77bcfc4a301570cc9030ee112b77dc47ab82426bae1";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ docutils ];
|
2021-01-05 17:05:55 +00:00
|
|
|
propagatedBuildInputs = [ aiobotocore fsspec ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Depends on `moto` which has a long dependency chain with exact
|
|
|
|
# version requirements that can't be made to work with current
|
|
|
|
# pythonPackages.
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "S3FS builds on boto3 to provide a convenient Python filesystem interface for S3.";
|
|
|
|
homepage = "https://github.com/dask/s3fs/";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
|
|
|
};
|
|
|
|
}
|