1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "geographiclib";
8 version = "1.50";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0cn6ap5fkh3mkfa57l5b44z3gvz7j6lpmc9rl4g2jny2gvp4dg8j";
13 };
14
15 meta = with stdenv.lib; {
16 homepage = "https://geographiclib.sourceforge.io";
17 description = "Algorithms for geodesics (Karney, 2013) for solving the direct and inverse problems for an ellipsoid of revolution";
18 license = licenses.mit;
19 maintainers = with maintainers; [ va1entin ];
20 };
21
22}