python3Packages.google_cloud_datastore: 1.10.0 -> 1.11.0

This commit is contained in:
Jonathan Ringer 2020-03-18 15:21:12 -07:00 committed by Jon
parent be23d2fac0
commit 96dcdb24b3

View File

@ -9,23 +9,24 @@
buildPythonPackage rec {
pname = "google-cloud-datastore";
version = "1.10.0";
version = "1.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "cae213e3817f37fdc3ac27c3a162024de3319ad0faf87a536fce375c4a1c1dc9";
sha256 = "1p0ifkhj48fa3m1y5990412s8msnn6mbz5p5g8ffln7jq7dvn57j";
};
checkInputs = [ pytest mock ];
propagatedBuildInputs = [ google_api_core google_cloud_core ];
checkPhase = ''
rm -r google
pytest tests/unit
'';
meta = with stdenv.lib; {
description = "Google Cloud Datastore API client library";
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
license = licenses.asl20;
maintainers = [ maintainers.costrouc ];
};