mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.timezonefinder: init at 4.2.0
This commit is contained in:
parent
801b3438eb
commit
be2b7fde23
2 changed files with 30 additions and 0 deletions
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;
|
||||
};
|
||||
|
||||
timezonefinder = callPackage ../development/python-modules/timezonefinder { };
|
||||
|
||||
tiros = callPackage ../development/python-modules/tiros { };
|
||||
|
||||
tinydb = callPackage ../development/python-modules/tinydb { };
|
||||
|
|
Loading…
Reference in a new issue