Files
nixpkgs/pkgs/development/python-modules/fs-s3fs/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

36 lines
660 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
fs,
six,
boto3,
}:
buildPythonPackage rec {
pname = "fs-s3fs";
version = "1.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "b57f8c7664460ff7b451b4b44ca2ea9623a374d74e1284c2d5e6df499dc7976c";
};
propagatedBuildInputs = [
fs
six
boto3
];
# tests try to integrate an s3 bucket which can't be tested properly in an isolated environment.
doCheck = false;
meta = {
homepage = "https://pypi.org/project/fs-s3fs/";
license = lib.licenses.mit;
description = "Amazon S3 filesystem for PyFilesystem2";
maintainers = [ ];
};
}