depot/third_party/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

61 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
cffi,
h3,
numba,
numpy,
poetry-core,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "timezonefinder";
version = "6.5.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "jannikmi";
repo = "timezonefinder";
rev = "refs/tags/${version}";
hash = "sha256-KVjAK4r+cRrX7U6MT0P7hH/TX6kMDv2DaSa456YG4sA=";
};
nativeBuildInputs = [
cffi
poetry-core
setuptools
];
propagatedBuildInputs = [
cffi
h3
numpy
];
nativeCheckInputs = [
numba
pytestCheckHook
];
pythonImportsCheck = [ "timezonefinder" ];
preCheck = ''
# Some tests need the CLI on the PATH
export PATH=$out/bin:$PATH
'';
meta = with lib; {
changelog = "https://github.com/jannikmi/timezonefinder/blob/${version}/CHANGELOG.rst";
description = "Module for finding the timezone of any point on earth (coordinates) offline";
mainProgram = "timezonefinder";
homepage = "https://github.com/MrMinimal64/timezonefinder";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}