nixpkgs/pkgs/development/python-modules/s3fs/default.nix

27 lines
776 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, docutils, aiobotocore, fsspec }:
2018-04-03 12:52:46 +01:00
buildPythonPackage rec {
pname = "s3fs";
2021-02-20 09:09:16 +00:00
version = "0.5.2";
2018-04-03 12:52:46 +01:00
src = fetchPypi {
inherit pname version;
2021-02-20 09:09:16 +00:00
sha256 = "87e5210415db17b9de18c77bcfc4a301570cc9030ee112b77dc47ab82426bae1";
2018-04-03 12:52:46 +01:00
};
buildInputs = [ docutils ];
2020-12-31 17:06:06 +00:00
propagatedBuildInputs = [ aiobotocore fsspec ];
2018-04-03 12:52:46 +01: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;
meta = with lib; {
2018-04-03 12:52:46 +01:00
description = "S3FS builds on boto3 to provide a convenient Python filesystem interface for S3.";
homepage = "https://github.com/dask/s3fs/";
2018-04-03 12:52:46 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}