12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.5";
19 src = fetchFromGitHub {
21 repo = "google-maps-services-python";
22 rev = "refs/tags/v${version}";
23 hash = "sha256-8oGZEMKUGaDHKq4qIZy10cbLNMmVclJnQE/dx877pNQ=";
26 propagatedBuildInputs = [ requests ];
36 "test_elevation_along_path_single"
37 "test_transit_without_time"
40 pythonImportsCheck = [ "googlemaps" ];
43 description = "Python client library for Google Maps API Web Services";
44 homepage = "https://github.com/googlemaps/google-maps-services-python";
45 changelog = "https://github.com/googlemaps/google-maps-services-python/releases/tag/v${version}";
46 license = licenses.asl20;
47 maintainers = with maintainers; [ Scriptkiddi ];