Merge pull request #100028 from helsinki-systems/py_openrouteservice
pythonPackage.openrouteservice: init at 2.3.0
This commit is contained in:
commit
77c0568da5
29
pkgs/development/python-modules/openrouteservice/default.nix
Normal file
29
pkgs/development/python-modules/openrouteservice/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, requests, responses, pytestCheckHook }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "openrouteservice";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GIScience";
|
||||
repo = "${pname}-py";
|
||||
rev = "v${version}";
|
||||
sha256 = "ySXzOQI9NcF1W/otbL7i3AY628/74ZkJjDMQ9ywVEPc=";
|
||||
};
|
||||
|
||||
checkInputs = [ pytestCheckHook responses ];
|
||||
|
||||
disabledTests = [
|
||||
# touches network
|
||||
"test_optimized_waypoints"
|
||||
"test_invalid_api_key"
|
||||
"test_raise_timeout_retriable_requests"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/GIScience/openrouteservice-py";
|
||||
description = "The Python API to consume openrouteservice(s) painlessly";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ Scriptkiddi ];
|
||||
};
|
||||
}
|
@ -4247,6 +4247,8 @@ in {
|
||||
|
||||
openrazer-daemon = callPackage ../development/python-modules/openrazer/daemon.nix { };
|
||||
|
||||
openrouteservice = callPackage ../development/python-modules/openrouteservice/default.nix { };
|
||||
|
||||
opentimestamps = callPackage ../development/python-modules/opentimestamps { };
|
||||
|
||||
opentracing = callPackage ../development/python-modules/opentracing { };
|
||||
|
Loading…
Reference in New Issue
Block a user