rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / applications / misc / tzupdate / default.nix
blob1bd2eece184cc62dcc9c863fa856d290bd3eebd2
1 { lib, python3, fetchPypi }:
3 let
4   inherit (python3.pkgs) buildPythonApplication requests;
5 in
6 buildPythonApplication rec {
7   pname = "tzupdate";
8   version = "2.1.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "5b55795c390e4ccc90e649c8cc387447daaf30a21d68f7196b49824cbcba8adc";
13   };
15   propagatedBuildInputs = [ requests ];
17   meta = with lib; {
18     description = "Update timezone information based on geoip";
19     mainProgram = "tzupdate";
20     homepage = "https://github.com/cdown/tzupdate";
21     maintainers = [ ];
22     license = licenses.unlicense;
23   };