aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix b/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix
index f4339bbce4a..ca07b50ceff 100644
--- a/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/timezonefinder/default.nix
@@ -4,24 +4,26 @@
, isPy27
, numba
, numpy
+, pytestCheckHook
+, pytestcov
}:
buildPythonPackage rec {
pname = "timezonefinder";
- version = "4.2.0";
+ version = "4.4.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
- sha256 = "0q8nd279labn03dz17s4xrglk1d31q9y8wcx99l51i5cxx53zsap";
+ sha256 = "c84e0f4b501419349e67972d25c535d9b5fd6c100c319747049b67812a4c6b97";
};
propagatedBuildInputs = [
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";