about summary refs log tree commit diff
path: root/pkgs/development/python-modules/geographiclib
diff options
context:
space:
mode:
authorva1entin <valh@mailbox.org>2019-10-18 18:59:21 +0200
committerJon <jonringer@users.noreply.github.com>2019-10-18 19:21:49 -0700
commitafa371559df723e9871fe4cc57949e8aa33630c4 (patch)
tree6ce275f1ef68aa1dee36697a2322b0654bb4eb9a /pkgs/development/python-modules/geographiclib
parent66239bcbea1a934d07161971484376e0188c23f6 (diff)
pythonPackages.geographiclib: init at 1.50
Diffstat (limited to 'pkgs/development/python-modules/geographiclib')
-rw-r--r--pkgs/development/python-modules/geographiclib/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/geographiclib/default.nix b/pkgs/development/python-modules/geographiclib/default.nix
new file mode 100644
index 0000000000000..0c275b672abd5
--- /dev/null
+++ b/pkgs/development/python-modules/geographiclib/default.nix
@@ -0,0 +1,22 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "geographiclib";
+  version = "1.50";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0cn6ap5fkh3mkfa57l5b44z3gvz7j6lpmc9rl4g2jny2gvp4dg8j";
+  };
+
+  meta = with stdenv.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 ];
+  };
+
+}