biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / vincenty / default.nix
blobc4e28ff23f4423fa557767b0a9b64d3755a25a99
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "vincenty";
9   version = "0.1.4";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "maurycyp";
14     repo = "vincenty";
15     rev = version;
16     sha256 = "1li8gv0zb1pdbxdybgaykm38lqbkb5dr7rph6zs1k4k3sh15ldw3";
17   };
19   # no tests implemented
20   doCheck = false;
22   pythonImportsCheck = [ "vincenty" ];
24   meta = with lib; {
25     description = "Calculate the geographical distance between 2 points with extreme accuracy";
26     homepage = "https://github.com/maurycyp/vincenty";
27     license = licenses.unlicense;
28     maintainers = with maintainers; [ dotlambda ];
29   };