python3Packages.s3fs: 0.5.2 -> 2021.5.0

This commit is contained in:
Fabian Affolter 2021-06-07 09:05:07 +02:00
parent 52b3e47413
commit ee9c929fc7

View File

@ -1,24 +1,38 @@
{ lib, buildPythonPackage, fetchPypi, docutils, aiobotocore, fsspec }: { lib
, buildPythonPackage
, fetchPypi
, docutils
, aiobotocore
, fsspec
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "s3fs"; pname = "s3fs";
version = "0.5.2"; version = "2021.5.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "87e5210415db17b9de18c77bcfc4a301570cc9030ee112b77dc47ab82426bae1"; sha256 = "sha256-cEJVMIFMaC3E9829ofKTCtgy2/G+40G1yQURxUzBJpA=";
}; };
buildInputs = [ docutils ]; buildInputs = [
propagatedBuildInputs = [ aiobotocore fsspec ]; docutils
];
propagatedBuildInputs = [
aiobotocore
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
# pythonPackages. # pythonPackages.
doCheck = false; doCheck = false;
pythonImportsCheck = [ "s3fs" ];
meta = with lib; { meta = with lib; {
description = "S3FS builds on boto3 to provide a convenient Python filesystem interface for S3."; description = "S3FS builds on boto3 to provide a convenient Python filesystem interface for S3";
homepage = "https://github.com/dask/s3fs/"; homepage = "https://github.com/dask/s3fs/";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ teh ]; maintainers = with maintainers; [ teh ];