linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / geographiclib / default.nix
blob5167b98660492d73ffbc24aa92d139b42d730ef8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "geographiclib";
8   version = "1.50";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0cn6ap5fkh3mkfa57l5b44z3gvz7j6lpmc9rl4g2jny2gvp4dg8j";
13   };
15   meta = with 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   };