nixpkgs/pkgs/development/python-modules/geographiclib/default.nix
2021-01-25 18:31:47 +01:00

23 lines
536 B
Nix

{ 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 ];
};
}