summary refs log tree commit diff
path: root/pkgs/development/python-modules/geographiclib/default.nix
blob: 5167b98660492d73ffbc24aa92d139b42d730ef8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "geographiclib";
  version = "1.50";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0cn6ap5fkh3mkfa57l5b44z3gvz7j6lpmc9rl4g2jny2gvp4dg8j";
  };

  meta = with lib; {
    homepage = "https://geographiclib.sourceforge.io";
    description = "Algorithms for geodesics (Karney, 2013) for solving the direct and inverse problems for an ellipsoid of revolution";
    license = licenses.mit;
    maintainers = with maintainers; [ va1entin ];
  };

}