Merge pull request #196115 from fabaff/haversine-bump

python310Packages.haversine: 2.6.0 -> 2.7.0
This commit is contained in:
Robert Scott 2022-10-15 15:51:53 +01:00 committed by GitHub
commit 0b27bfecef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,17 +3,21 @@
, fetchFromGitHub
, numpy
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "haversine";
version = "2.6.0";
version = "2.7.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mapado";
repo = pname;
rev = "v${version}";
sha256 = "sha256-cFb2DsXIwaaJK3tiOTCc0k45FVJ4/Vudkq0rzqalGJs=";
hash = "sha256-iAGG1mjrt6oJ0IkmlJwrvb2Bpk4dNxV7ee9LYov03UY=";
};
checkInputs = [
@ -21,7 +25,9 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "haversine" ];
pythonImportsCheck = [
"haversine"
];
meta = with lib; {
description = "Python module the distance between 2 points on earth";