python311Packages.cloudpathlib: init at 0.16.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user