about summary refs log tree commit diff
path: root/pkgs/development/python-modules/vincenty/default.nix
blob: c4e28ff23f4423fa557767b0a9b64d3755a25a99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
}:

buildPythonPackage rec {
  pname = "vincenty";
  version = "0.1.4";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "maurycyp";
    repo = "vincenty";
    rev = version;
    sha256 = "1li8gv0zb1pdbxdybgaykm38lqbkb5dr7rph6zs1k4k3sh15ldw3";
  };

  # no tests implemented
  doCheck = false;

  pythonImportsCheck = [ "vincenty" ];

  meta = with lib; {
    description = "Calculate the geographical distance between 2 points with extreme accuracy";
    homepage = "https://github.com/maurycyp/vincenty";
    license = licenses.unlicense;
    maintainers = with maintainers; [ dotlambda ];
  };
}