summary refs log tree commit diff
path: root/pkgs/development/python-modules/googlemaps/default.nix
blob: 007d4eb2cea7b2368940aa2cfb69bf7f1c0882e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, responses
, pytestCheckHook
, pytestcov
, isPy27
}:

buildPythonPackage rec {
  pname = "googlemaps";
  version = "4.4.2";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "googlemaps";
    repo = "google-maps-services-python";
    rev = "v${version}";
    sha256 = "DYhW1OGce/0gY7Jmwq6iM45PxLyXIYo4Cfg2u6Xuyg4=";
  };

  propagatedBuildInputs = [ requests ];

  checkInputs = [ pytestCheckHook responses pytestcov ];

  disabledTests = [
    # touches network
    "test_elevation_along_path_single"
    "test_transit_without_time"
  ];

  meta = with lib; {
    homepage = "https://github.com/googlemaps/google-maps-services-python";
    description = "Python client library for Google Maps API Web Services";
    license = licenses.asl20;
    maintainers = with maintainers; [ Scriptkiddi ];
  };
}