pythonPackages.timezonefinder: fix build

This commit is contained in:
Nikolay Korotkiy 2020-09-14 10:06:52 +03:00
parent 16f13a9cad
commit 9c0a900a9d
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

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