3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #97961 from sikmir/timezonefinder

pythonPackages.timezonefinder: fix build
This commit is contained in:
Lancelot SIX 2020-09-14 17:12:57 +01:00 committed by GitHub
commit 79b9007c94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,8 @@
, isPy27
, numba
, numpy
, pytestCheckHook
, pytestcov
}:
buildPythonPackage rec {
@ -21,7 +23,7 @@ buildPythonPackage rec {
numpy
];
checkInputs = [ numba ];
checkInputs = [ numba pytestCheckHook pytestcov ];
meta = with lib; {
description = "fast python package for finding the timezone of any point on earth (coordinates) offline";