python3Packages.geographiclib: 1.52 -> 2.0

This commit is contained in:
Martin Weinelt
2022-07-16 12:59:08 +02:00
parent 8e17408336
commit 6517a4f6e4
@@ -2,15 +2,17 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "geographiclib";
version = "1.52";
version = "2.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rEANZyuJVLAwa8qJCwiLuLoqdX3IEzzKC4ePNLM7J0A=";
sha256 = "sha256-9/Qchdw+HC09k17IZmDcOyyEjIPhf5qeUbqdUUahWFk=";
};
checkInputs = [
@@ -23,5 +25,6 @@ buildPythonPackage rec {
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; [ ];
};
}