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

41 lines
777 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, docutils
, aiobotocore
, fsspec
}:
2018-04-03 14:52:46 +03:00
buildPythonPackage rec {
pname = "s3fs";
version = "2021.8.1";
2018-04-03 14:52:46 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "0zwy2fr95s5wzrr2iwbayjh9xh421p6wf0m75szl7rw930v1kb2y";
2018-04-03 14:52:46 +03:00
};
buildInputs = [
docutils
];
propagatedBuildInputs = [
aiobotocore
fsspec
];
2018-04-03 14:52:46 +03: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;
pythonImportsCheck = [ "s3fs" ];
meta = with lib; {
homepage = "https://github.com/dask/s3fs/";
description = "A Pythonic file interface for S3";
2018-04-03 14:52:46 +03:00
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
};
}