depot/third_party/nixpkgs/pkgs/development/python-modules/google-resumable-media/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

66 lines
1.4 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchPypi,
google-auth,
google-cloud-testutils,
google-crc32c,
mock,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "google-resumable-media";
version = "2.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Xxj1+pg29LCDFiBkocLJjBcjm/2pylCtlwzPkF8+Yls=";
};
propagatedBuildInputs = [
google-auth
google-crc32c
];
passthru.optional-dependencies = {
requests = [ requests ];
aiohttp = [ aiohttp ];
};
nativeCheckInputs = [
google-cloud-testutils
mock
pytest-asyncio
pytestCheckHook
] ++ passthru.optional-dependencies.requests;
preCheck = ''
# prevent shadowing imports
rm -r google
# fixture 'authorized_transport' not found
rm tests/system/requests/test_upload.py
# requires network
rm tests/system/requests/test_download.py
'';
pythonImportsCheck = [
"google._async_resumable_media"
"google.resumable_media"
];
meta = with lib; {
description = "Utilities for Google Media Downloads and Resumable Uploads";
homepage = "https://github.com/GoogleCloudPlatform/google-resumable-media-python";
changelog = "https://github.com/googleapis/google-resumable-media-python/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}