nixpkgs/pkgs/development/python-modules/googlemaps/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
951 B
Nix
Raw Normal View History

{ lib
2021-01-05 14:09:56 +03:00
, buildPythonPackage
, fetchFromGitHub
, pytest-cov
, pytestCheckHook
, pythonOlder
, requests
2021-01-05 14:09:56 +03:00
, responses
}:
buildPythonPackage rec {
pname = "googlemaps";
version = "4.6.0";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "googlemaps";
repo = "google-maps-services-python";
rev = "v${version}";
sha256 = "sha256-pzCM1uZupqJgoogwacuuy1P8I9LF65w7ZS6vY10VgeU=";
};
propagatedBuildInputs = [ requests ];
checkInputs = [
pytest-cov
pytestCheckHook
responses
];
disabledTests = [
# touches network
"test_elevation_along_path_single"
"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";
license = licenses.asl20;
maintainers = with maintainers; [ Scriptkiddi ];
};
}