From 9c0a900a9defebbfce49695059ce3f92ce405f71 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Mon, 14 Sep 2020 10:06:52 +0300 Subject: [PATCH] pythonPackages.timezonefinder: fix build --- pkgs/development/python-modules/timezonefinder/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/timezonefinder/default.nix b/pkgs/development/python-modules/timezonefinder/default.nix index e62a87e67b0..ca07b50ceff 100644 --- a/pkgs/development/python-modules/timezonefinder/default.nix +++ b/pkgs/development/python-modules/timezonefinder/default.nix @@ -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";