From e7036d9fc7efbe26b5243a37694e47105da1b143 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Wed, 18 Mar 2020 14:53:09 -0700 Subject: [PATCH] python3Packages.google_cloud_storage: 1.23.0 -> 1.26.0 --- .../python-modules/google_cloud_storage/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/google_cloud_storage/default.nix b/pkgs/development/python-modules/google_cloud_storage/default.nix index ff750602465b..856de74dd938 100644 --- a/pkgs/development/python-modules/google_cloud_storage/default.nix +++ b/pkgs/development/python-modules/google_cloud_storage/default.nix @@ -11,11 +11,11 @@ buildPythonPackage rec { pname = "google-cloud-storage"; - version = "1.23.0"; + version = "1.26.0"; src = fetchPypi { inherit pname version; - sha256 = "c66e876ae9547884fa42566a2ebfec51d280f488d7a058af9611ba90c78bed78"; + sha256 = "0caxqf6vda89cmc81fxhmfk3n61aypqz2sswnbsylzf436rsxpzz"; }; propagatedBuildInputs = [ @@ -26,8 +26,11 @@ buildPythonPackage rec { ]; checkInputs = [ pytest mock ]; + # remove directory from interferring with importing modules + # ignore tests which require credentials checkPhase = '' - pytest tests/unit + rm -r google + pytest tests/unit -k 'not create' ''; meta = with stdenv.lib; {