10 buildPythonPackage rec {
13 disabled = !isPy3k; # only Python 3
15 src = fetchFromGitHub {
19 sha256 = "0239a4achk49ngagb6aqy6cgzfwgbxir07vwi13ysbpx78y0l4g9";
22 propagatedBuildInputs = [ geographiclib ];
29 # Exclude tests which perform API calls
30 pytestFlagsArray = [ "--ignore test/geocoders/" ];
31 pythonImportsCheck = [ "geopy" ];
33 __darwinAllowLocalNetworking = true;
36 homepage = "https://github.com/geopy/geopy";
37 description = "Python Geocoding Toolbox";
38 changelog = "https://github.com/geopy/geopy/releases/tag/${version}";
39 license = with licenses; [ mit ];
40 maintainers = with maintainers; [ GuillaumeDesforges ];