pythonPackages.timezonefinder: init at 4.2.0

This commit is contained in:
Wael M. Nasreddine 2019-07-16 18:35:29 -07:00 committed by Jon
parent 801b3438eb
commit be2b7fde23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ buildPythonPackage
, lib
, fetchPypi
, numba
, numpy
}:
buildPythonPackage rec {
pname = "timezonefinder";
version = "4.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "0q8nd279labn03dz17s4xrglk1d31q9y8wcx99l51i5cxx53zsap";
};
propagatedBuildInputs = [
numpy
];
checkInputs = [ numba ];
meta = with lib; {
description = "fast python package for finding the timezone of any point on earth (coordinates) offline";
homepage = "https://github.com/MrMinimal64/timezonefinder";
license = licenses.mit;
};
}

View file

@ -5449,6 +5449,8 @@ in {
inherit (pkgs) tiledb;
};
timezonefinder = callPackage ../development/python-modules/timezonefinder { };
tiros = callPackage ../development/python-modules/tiros { };
tinydb = callPackage ../development/python-modules/tinydb { };