mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
0215034f25
when they already rely on SRI hashes.
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{ lib
|
|
, async_generator
|
|
, buildPythonPackage
|
|
, docutils
|
|
, fetchFromGitHub
|
|
, geographiclib
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pytz
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "geopy";
|
|
version = "2.3.0";
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-bHfjUfuiEH3AxRDTLmbm67bKOw6fBuMQDUQA2NLg800=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
geographiclib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
async_generator
|
|
docutils
|
|
pytestCheckHook
|
|
pytz
|
|
];
|
|
|
|
disabledTests = [
|
|
# ignore --skip-tests-requiring-internet flag
|
|
"test_user_agent_default"
|
|
];
|
|
|
|
pytestFlagsArray = [ "--skip-tests-requiring-internet" ];
|
|
|
|
pythonImportsCheck = [ "geopy" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/geopy/geopy";
|
|
description = "Python Geocoding Toolbox";
|
|
changelog = "https://github.com/geopy/geopy/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ GuillaumeDesforges ];
|
|
};
|
|
}
|