Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / geographiclib / default.nix
blobfcdf7a015e7a9f41754560d07990c02a87c65261
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "geographiclib";
10   version = "2.0";
11   disabled = pythonOlder "3.7";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-9/Qchdw+HC09k17IZmDcOyyEjIPhf5qeUbqdUUahWFk=";
16   };
18   nativeCheckInputs = [
19     pytestCheckHook
20   ];
22   pythonImportsCheck = [ "geographiclib" ];
24   meta = with lib; {
25     homepage = "https://geographiclib.sourceforge.io";
26     description = "Algorithms for geodesics (Karney, 2013) for solving the direct and inverse problems for an ellipsoid of revolution";
27     license = licenses.mit;
28     maintainers = with maintainers; [ ];
29   };