0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 05:16:25 +03:00

python3Packages.google_api_python_client: 1.8.0 -> 1.8.1

This contains a fix for the goobook build which would break due to this
update.
This commit is contained in:
Michael Weiss 2020-04-21 19:23:08 +02:00
parent cece19e0d8
commit 0d1194704b
No known key found for this signature in database
GPG key ID: 5BE487C4D4771D83
3 changed files with 46 additions and 3 deletions

View file

@ -1,16 +1,24 @@
{ lib, buildPythonPackage, fetchPypi
{ lib, buildPythonPackage, fetchPypi, fetchpatch
, google_auth, google-auth-httplib2, google_api_core
, httplib2, six, uritemplate, oauth2client }:
buildPythonPackage rec {
pname = "google-api-python-client";
version = "1.8.0";
version = "1.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "003rgr15r9j080f3n5y2x6ymxsfv652m3r7j83p7sbrd9shl4nqg";
sha256 = "14d7719sxl7bqpw3k4hhfwd0l0v98lnpi7qlhdaf8jxw21ivzmpz";
};
patches = [
# To fix a regression/bug in 1.8.1:
(fetchpatch {
url = "https://github.com/googleapis/google-api-python-client/commit/1d8ec6874e1c6081893de7cd7cbc86d1f6580320.patch";
sha256 = "1nr24jzvbkzaigv9c935fkpzfa36hj6k7yx5bdwxqfhpa3p9i8n9";
})
];
# No tests included in archive
doCheck = false;