pythonPackages.geographiclib: init at 1.50
This commit is contained in:
parent
66239bcbea
commit
afa371559d
|
@ -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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -4788,6 +4788,8 @@ in {
|
||||||
|
|
||||||
geoalchemy2 = callPackage ../development/python-modules/geoalchemy2 { };
|
geoalchemy2 = callPackage ../development/python-modules/geoalchemy2 { };
|
||||||
|
|
||||||
|
geographiclib = callPackage ../development/python-modules/geographiclib { };
|
||||||
|
|
||||||
geopy = callPackage ../development/python-modules/geopy { };
|
geopy = callPackage ../development/python-modules/geopy { };
|
||||||
|
|
||||||
django-haystack = callPackage ../development/python-modules/django-haystack { };
|
django-haystack = callPackage ../development/python-modules/django-haystack { };
|
||||||
|
|
Loading…
Reference in New Issue