summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-05 11:05:59 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-06 11:05:18 +0100
commit4fde918f220d851130762fc5b5c7e5234662e25d (patch)
tree002b2f0519935bca9939941db85c3c4239e446fd
parent74ad2527e9acc751bb4dab5456e7c06a287b5a73 (diff)
downloadnixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.tar
nixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.tar.gz
nixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.tar.bz2
nixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.tar.lz
nixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.tar.xz
nixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.tar.zst
nixpkgs-4fde918f220d851130762fc5b5c7e5234662e25d.zip
pythonPackages.google_cloud_core: 1.4.3 -> 1.5.0
-rw-r--r--pkgs/development/python-modules/google_cloud_core/default.nix27
1 files changed, 17 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/google_cloud_core/default.nix b/pkgs/development/python-modules/google_cloud_core/default.nix
index 1ad08ea05af..bcb9504cb91 100644
--- a/pkgs/development/python-modules/google_cloud_core/default.nix
+++ b/pkgs/development/python-modules/google_cloud_core/default.nix
@@ -1,31 +1,38 @@
-{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, python
-, google_api_core, grpcio, mock }:
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, pythonOlder
+, pytestCheckHook
+, python
+, google_api_core
+, grpcio
+, mock
+}:
 
 buildPythonPackage rec {
   pname = "google-cloud-core";
-  version = "1.4.3";
+  version = "1.5.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "21afb70c1b0bce8eeb8abb5dca63c5fd37fc8aea18f4b6d60e803bd3d27e6b80";
+    sha256 = "01liq4nrd2g3ingg8v0ly4c86db8agnr9h1fiz219c7fz0as0xqj";
   };
 
-  disabled = pythonOlder "3.5";
+  propagatedBuildInputs = [ google_api_core ];
 
-  propagatedBuildInputs = [ google_api_core grpcio ];
-  checkInputs = [ google_api_core mock pytestCheckHook ];
-
-  pythonImportsCheck = [ "google.cloud" ];
+  checkInputs = [ mock pytestCheckHook ];
 
   # prevent google directory from shadowing google imports
   preCheck = ''
     rm -r google
   '';
 
+  pythonImportsCheck = [ "google.cloud" ];
+
   meta = with stdenv.lib; {
     description = "API Client library for Google Cloud: Core Helpers";
     homepage = "https://github.com/googleapis/python-cloud-core";
     license = licenses.asl20;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ SuperSandro2000 ];
   };
 }