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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
776 B
Nix
Raw Normal View History

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