python3Packages.googlemaps: 4.4.2 -> 4.4.5

This commit is contained in:
Fabian Affolter 2021-03-16 23:57:06 +01:00 committed by Jonathan Ringer
parent b9eaf2867c
commit b1632106a4

View file

@ -1,28 +1,32 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-cov
, pytestCheckHook
, pythonOlder
, requests
, responses
, pytestCheckHook
, pytestcov
, isPy27
}:
buildPythonPackage rec {
pname = "googlemaps";
version = "4.4.2";
disabled = isPy27;
version = "4.4.5";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "googlemaps";
repo = "google-maps-services-python";
rev = "v${version}";
sha256 = "DYhW1OGce/0gY7Jmwq6iM45PxLyXIYo4Cfg2u6Xuyg4=";
sha256 = "sha256-Rdfp98UqTMbqcOpkzh0Dz8fNSSbuvCnCztCkxiBgaAA=";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ pytestCheckHook responses pytestcov ];
checkInputs = [
pytest-cov
pytestCheckHook
responses
];
disabledTests = [
# touches network
@ -30,6 +34,8 @@ buildPythonPackage rec {
"test_transit_without_time"
];
pythonImportsCheck = [ "googlemaps" ];
meta = with lib; {
homepage = "https://github.com/googlemaps/google-maps-services-python";
description = "Python client library for Google Maps API Web Services";