chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ge / getmail6 / package.nix
blob3ba6da5b42c6afe5e2c9af596b8e2f35cad61bc4
1 { lib
2 , python3
3 , fetchFromGitHub
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "getmail6";
8   version = "6.19.05";
9   pyproject = true;
11   src = fetchFromGitHub {
12     owner = "getmail6";
13     repo = "getmail6";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-GjB53bl2gh3SA+kqC9rrQ9I4rP0z69G/bamInmq8W+I=";
16   };
18   build-system = with python3.pkgs; [
19     setuptools
20   ];
22   # needs a Docker setup
23   doCheck = false;
25   pythonImportsCheck = [ "getmailcore" ];
27   postPatch = ''
28     # getmail spends a lot of effort to build an absolute path for
29     # documentation installation; too bad it is counterproductive now
30     sed -e '/datadir or prefix,/d' -i setup.py
31     sed -e 's,/usr/bin/getmail,$(dirname $0)/getmail,' -i getmails
32   '';
34   meta = with lib; {
35     description = "Program for retrieving mail";
36     homepage = "https://getmail6.org";
37     changelog = "https://github.com/getmail6/getmail6/blob/${src.rev}/docs/CHANGELOG";
38     license = licenses.gpl2Plus;
39     maintainers = with maintainers; [ abbe dotlambda ];
40   };