Files
nixpkgs/pkgs/development/python-modules/geopy/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

55 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
docutils,
fetchFromGitHub,
geographiclib,
pytest7CheckHook,
pythonAtLeast,
pythonOlder,
pytz,
}:
buildPythonPackage rec {
pname = "geopy";
version = "2.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
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 = [ ];
};
}