2021-01-25 09:26:54 +01:00
|
|
|
{ lib, python3 }:
|
2017-10-17 00:46:10 +02:00
|
|
|
|
|
|
|
let
|
2020-01-31 07:16:55 +01:00
|
|
|
inherit (python3.pkgs) buildPythonApplication fetchPypi requests;
|
2017-10-17 00:46:10 +02:00
|
|
|
in
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "tzupdate";
|
2020-10-15 06:39:41 +02:00
|
|
|
version = "2.1.0";
|
2017-10-17 00:46:10 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-15 06:39:41 +02:00
|
|
|
sha256 = "5b55795c390e4ccc90e649c8cc387447daaf30a21d68f7196b49824cbcba8adc";
|
2017-10-17 00:46:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-01-31 07:16:55 +01:00
|
|
|
description = "Update timezone information based on geoip";
|
|
|
|
homepage = "https://github.com/cdown/tzupdate";
|
2017-10-17 00:46:10 +02:00
|
|
|
maintainers = [ maintainers.michaelpj ];
|
|
|
|
license = licenses.unlicense;
|
|
|
|
};
|
|
|
|
}
|