Merge pull request #286078 from fabaff/timezonefinder-bump

python311Packages.timezonefinder: 6.2.0 -> 6.4.0
This commit is contained in:
Fabian Affolter 2024-02-03 23:57:05 +01:00 committed by GitHub
commit a884019634
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,16 +13,16 @@
buildPythonPackage rec {
pname = "timezonefinder";
version = "6.2.0";
format = "pyproject";
version = "6.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "jannikmi";
repo = pname;
repo = "timezonefinder";
rev = "refs/tags/${version}";
hash = "sha256-n6TcTezu5seKy34KDlzGikAVaqAud00gxywwJA3MaWM=";
hash = "sha256-6hcReAzqTp4Od/PJN/W1uz4VS129yMFqQYznbsC/TRY=";
};
nativeBuildInputs = [
@ -42,11 +42,6 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'numpy = "^1.22"' 'numpy = "*"'
'';
pythonImportsCheck = [
"timezonefinder"
];