47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, google-auth
|
|
, google-cloud-testutils
|
|
, google-crc32c
|
|
, mock
|
|
, pytestCheckHook
|
|
, pytest-asyncio
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-resumable-media";
|
|
version = "1.2.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0hwxdgsqh6933kp4jkv6hwwdcqs7bgjn9j08ga399njv3s9b367f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ google-auth google-crc32c requests ];
|
|
|
|
checkInputs = [ google-auth google-cloud-testutils mock pytestCheckHook pytest-asyncio ];
|
|
|
|
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";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|