3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.google_cloud_logging: 1.14.0 -> 1.15.0, fix tests

This commit is contained in:
Jonathan Ringer 2020-03-18 14:34:50 -07:00 committed by Jon
parent 36c423530d
commit 7979557ab1

View file

@ -12,17 +12,18 @@
buildPythonPackage rec {
pname = "google-cloud-logging";
version = "1.14.0";
version = "1.15.0";
src = fetchPypi {
inherit pname version;
sha256 = "3c12d4421df8e4e77b5e029b1341ae80d180cfda0f9cbef417f36438630cc35f";
sha256 = "0smpvzdbz3ih3vc0nmn9619xa40mmqk9rs9ic1mwwyh1iyi44waz";
};
checkInputs = [ pytest mock webapp2 django flask ];
propagatedBuildInputs = [ google_api_core google_cloud_core ];
checkPhase = ''
rm -r google
pytest tests/unit
'';