python38Packages.google-resumable-media: 2.0.2 -> 2.0.3

This commit is contained in:
R. RyanTM 2021-09-22 05:26:12 +00:00 committed by Sandro Jäckel
parent eb71bcd041
commit 80b3ac2f65
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -12,18 +12,13 @@
buildPythonPackage rec {
pname = "google-resumable-media";
version = "2.0.2";
version = "2.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "36d682161fdcbfa29681212c210fabecbf6849a505a0cbc54b7f70a10a5278a2";
sha256 = "b4b4709d04a6a03cbec746c2b5cb18f1f9878bf1ef3cd61908842a3d94c20471";
};
postPatch = ''
substituteInPlace setup.py \
--replace "google-crc32c >= 1.0, <= 1.1.2" "google-crc32c~=1.0"
'';
propagatedBuildInputs = [ google-auth google-crc32c requests ];
checkInputs = [ google-cloud-testutils mock pytestCheckHook pytest-asyncio ];