python311Packages.cloudpathlib: init at 0.16.0

This commit is contained in:
Gaetan Lepage
2023-10-24 19:21:31 +02:00
parent 90eb857e20
commit d4e8ce40f0
2 changed files with 84 additions and 0 deletions
@@ -0,0 +1,82 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, flit-core
, importlib-metadata
, typing-extensions
, cloudpathlib
, azure-storage-blob
, google-cloud-storage
, boto3
, psutil
, pydantic
, pytestCheckHook
, pytest-cases
, pytest-cov
, pytest-xdist
, python-dotenv
, shortuuid
}:
buildPythonPackage rec {
pname = "cloudpathlib";
version = "0.16.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "drivendataorg";
repo = "cloudpathlib";
rev = "v${version}";
hash = "sha256-d4CbzPy3H5HQ4YmSRCRMEYaTpwB7F0Bznd26aKWiHTA=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
importlib-metadata
typing-extensions
];
passthru.optional-dependencies = {
all = [
cloudpathlib
];
azure = [
azure-storage-blob
];
gs = [
google-cloud-storage
];
s3 = [
boto3
];
};
pythonImportsCheck = [ "cloudpathlib" ];
nativeCheckInputs = [
azure-storage-blob
boto3
google-cloud-storage
psutil
pydantic
pytestCheckHook
pytest-cases
pytest-cov
pytest-xdist
python-dotenv
shortuuid
];
meta = with lib; {
description = "Python pathlib-style classes for cloud storage services such as Amazon S3, Azure Blob Storage, and Google Cloud Storage";
homepage = "https://github.com/drivendataorg/cloudpathlib";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};
}
+2
View File
@@ -2126,6 +2126,8 @@ self: super: with self; {
cloudflare = callPackage ../development/python-modules/cloudflare { };
cloudpathlib = callPackage ../development/python-modules/cloudpathlib { };
cloudpickle = callPackage ../development/python-modules/cloudpickle { };
cloudscraper = callPackage ../development/python-modules/cloudscraper { };