Files
nixpkgs/pkgs/development/python-modules/geographiclib/default.nix
T
Martin Weinelt 4d6f2efd04 python3Packages.geographiclib: 2.0 -> 2.1
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:08 +01:00

32 lines
679 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "geographiclib";
version = "2.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-amVF5iYtDtNSLhPFFXE3GHl+N+2MZywxrXsknzcu8Qg=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "geographiclib" ];
meta = {
homepage = "https://geographiclib.sourceforge.io";
description = "Algorithms for geodesics (Karney, 2013) for solving the direct and inverse problems for an ellipsoid of revolution";
license = lib.licenses.mit;
maintainers = [ ];
};
}