pythonPackages.geographiclib: init at 1.50

This commit is contained in:
va1entin 2019-10-18 18:59:21 +02:00 committed by Jon
parent 66239bcbea
commit afa371559d
2 changed files with 24 additions and 0 deletions

View File

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

View File

@ -4788,6 +4788,8 @@ in {
geoalchemy2 = callPackage ../development/python-modules/geoalchemy2 { };
geographiclib = callPackage ../development/python-modules/geographiclib { };
geopy = callPackage ../development/python-modules/geopy { };
django-haystack = callPackage ../development/python-modules/django-haystack { };