summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-07-16 12:59:08 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-07-21 22:33:50 +0200
commit6517a4f6e48465b635dfd09de00a4716211fe557 (patch)
tree27667e5fc870c2b160d10552e59fc611c25e4671 /pkgs/development/python-modules
parent8e17408336ac978580c4ae5b90377c43d8cd214e (diff)
python3Packages.geographiclib: 1.52 -> 2.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/geographiclib/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/geographiclib/default.nix b/pkgs/development/python-modules/geographiclib/default.nix
index 0526a584a41b..12a542af509d 100644
--- a/pkgs/development/python-modules/geographiclib/default.nix
+++ b/pkgs/development/python-modules/geographiclib/default.nix
@@ -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; [ ];
};
}