mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25d226598d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tzupdate/versions
24 lines
560 B
Nix
24 lines
560 B
Nix
{ stdenv, python }:
|
|
|
|
let
|
|
inherit (python.pkgs) buildPythonApplication fetchPypi requests;
|
|
in
|
|
buildPythonApplication rec {
|
|
pname = "tzupdate";
|
|
version = "1.5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "13np40h64bgkcj10qw6f4nb51p47bb20fd6pzxq8xbr645a4d34m";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Update timezone information based on geoip.";
|
|
homepage = https://github.com/cdown/tzupdate;
|
|
maintainers = [ maintainers.michaelpj ];
|
|
license = licenses.unlicense;
|
|
};
|
|
}
|