diff options
| author | Robert Schütz <dev@schuetz-co.de> | 2021-06-19 18:36:29 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-06-19 17:17:56 +0000 |
| commit | 426c25db0d9f78769fa95d0613fd1ba5d6271e39 (patch) | |
| tree | c2f5b1d8c21d669747fb453ba665baa8d7a25232 | |
| parent | Merge pull request #127339 from NixOS/backport-127334-to-release-21.05 (diff) | |
| download | nixpkgs-426c25db0d9f78769fa95d0613fd1ba5d6271e39.tar.gz | |
getmail6: 6.16 -> 6.17
https://github.com/getmail6/getmail6/releases/tag/v6.17
(cherry picked from commit fbf187aafe8c330f6986a182d171c17a4947d168)
| -rw-r--r-- | pkgs/tools/networking/getmail6/default.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/tools/networking/getmail6/default.nix b/pkgs/tools/networking/getmail6/default.nix index 673ff7f83a3f..ceec2bab490e 100644 --- a/pkgs/tools/networking/getmail6/default.nix +++ b/pkgs/tools/networking/getmail6/default.nix @@ -1,16 +1,20 @@ -{ fetchFromGitHub, python3Packages, lib }: +{ lib +, python3 +, fetchFromGitHub +}: -python3Packages.buildPythonApplication rec { +python3.pkgs.buildPythonApplication rec { pname = "getmail6"; - version = "6.16"; + version = "6.17"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "1y373nzbffjjjs43441cn3wrb0yq1mw2vqixhizbzdacrs45xbfa"; + sha256 = "sha256-pPf+98zoS1t59RoqbmS4V0OsTLMR37Wcsl9BSWuvc0k="; }; + # needs a Docker setup doCheck = false; pythonImportsCheck = [ "getmailcore" ]; @@ -26,6 +30,6 @@ python3Packages.buildPythonApplication rec { homepage = "https://getmail6.org"; updateWalker = true; license = licenses.gpl2Plus; - maintainers = with maintainers; [ abbe ]; + maintainers = with maintainers; [ abbe dotlambda ]; }; } |
