nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.geographiclib: 1.52 -> 2.0

+5 -2
+5 -2
pkgs/development/python-modules/geographiclib/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "geographiclib"; 9 - version = "1.52"; 10 + version = "2.0"; 11 + disabled = pythonOlder "3.7"; 10 12 11 13 src = fetchPypi { 12 14 inherit pname version; 13 - sha256 = "sha256-rEANZyuJVLAwa8qJCwiLuLoqdX3IEzzKC4ePNLM7J0A="; 15 + sha256 = "sha256-9/Qchdw+HC09k17IZmDcOyyEjIPhf5qeUbqdUUahWFk="; 14 16 }; 15 17 16 18 checkInputs = [ ··· 25 23 homepage = "https://geographiclib.sourceforge.io"; 26 24 description = "Algorithms for geodesics (Karney, 2013) for solving the direct and inverse problems for an ellipsoid of revolution"; 27 25 license = licenses.mit; 26 + maintainers = with maintainers; [ ]; 28 27 }; 29 28 }