mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
Merge pull request #127478 from dotlambda/getmail6-6.17
getmail6: 6.16 -> 6.17
This commit is contained in:
commit
9c882a27bf
1 changed files with 9 additions and 5 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue