0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, cffi
|
|
, h3
|
|
, numba
|
|
, numpy
|
|
, poetry-core
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "timezonefinder";
|
|
version = "6.1.9";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jannikmi";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-A5s1npvgJGp6SvIqoXGRmFN3iE0pqMUl1ZTi07ix5b0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cffi
|
|
poetry-core
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
cffi
|
|
h3
|
|
numpy
|
|
];
|
|
|
|
checkInputs = [
|
|
numba
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'numpy = "^1.22"' 'numpy = "*"'
|
|
'';
|
|
|
|
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";
|
|
homepage = "https://github.com/MrMinimal64/timezonefinder";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|