ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / haversine / default.nix
blob690f5eb78846f66a1bf7b828368fb3ce682ef9cf
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , numpy
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "haversine";
11   version = "2.7.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "mapado";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-iAGG1mjrt6oJ0IkmlJwrvb2Bpk4dNxV7ee9LYov03UY=";
21   };
23   checkInputs = [
24     numpy
25     pytestCheckHook
26   ];
28   pythonImportsCheck = [
29     "haversine"
30   ];
32   meta = with lib; {
33     description = "Python module the distance between 2 points on earth";
34     homepage = "https://github.com/mapado/haversine";
35     license = with licenses; [ mit ];
36     maintainers = with maintainers; [ fab ];
37   };