pythonPackages.timezonefinder: init at 4.2.0
This commit is contained in:
parent
801b3438eb
commit
be2b7fde23
28
pkgs/development/python-modules/timezonefinder/default.nix
Normal file
28
pkgs/development/python-modules/timezonefinder/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -5449,6 +5449,8 @@ in {
|
|||||||
inherit (pkgs) tiledb;
|
inherit (pkgs) tiledb;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timezonefinder = callPackage ../development/python-modules/timezonefinder { };
|
||||||
|
|
||||||
tiros = callPackage ../development/python-modules/tiros { };
|
tiros = callPackage ../development/python-modules/tiros { };
|
||||||
|
|
||||||
tinydb = callPackage ../development/python-modules/tinydb { };
|
tinydb = callPackage ../development/python-modules/tinydb { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user