blob: 90413b9fa6c8df95becbdc9ea00e2b418c40e755 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
|
{
lib,
buildPythonPackage,
docutils,
fetchFromGitHub,
geographiclib,
pytest7CheckHook,
pythonAtLeast,
pytz,
}:
buildPythonPackage rec {
pname = "geopy";
version = "2.4.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "geopy";
repo = "geopy";
tag = version;
hash = "sha256-mlOXDEtYry1IUAZWrP2FuY/CGliUnCPYLULnLNN0n4Y=";
};
propagatedBuildInputs = [ geographiclib ];
nativeCheckInputs = [
docutils
pytest7CheckHook
pytz
];
disabledTests = [
# ignore --skip-tests-requiring-internet flag
"test_user_agent_default"
];
disabledTestPaths = lib.optionals (pythonAtLeast "3.12") [ "test/test_init.py" ];
pytestFlags = [ "--skip-tests-requiring-internet" ];
pythonImportsCheck = [ "geopy" ];
__darwinAllowLocalNetworking = true;
meta = {
homepage = "https://github.com/geopy/geopy";
description = "Python Geocoding Toolbox";
changelog = "https://github.com/geopy/geopy/releases/tag/${version}";
license = with lib.licenses; [ mit ];
maintainers = [ ];
};
}
|