python311Packages.haversine: refactor

This commit is contained in:
Fabian Affolter
2024-01-17 12:02:33 +01:00
parent 5f758a692e
commit 18ea65b9b7
@@ -4,22 +4,27 @@
, numpy
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "haversine";
version = "2.8.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mapado";
repo = pname;
rev = "v${version}";
repo = "haversine";
rev = "refs/tags/v${version}";
hash = "sha256-MKOg2awpamupvuXstiH7VoIY4ax+hy2h2cFXDFKJ2mA=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
numpy
pytestCheckHook
@@ -32,6 +37,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module the distance between 2 points on earth";
homepage = "https://github.com/mapado/haversine";
changelog = "https://github.com/mapado/haversine/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};