librewolf: 132.0.1 -> 132.0.1-1 (#355483)
[NixPkgs.git] / pkgs / by-name / ml / mlarchive2maildir / package.nix
blobd381dd0b0f27133c123d807b6ef309993a99e800
1 { lib, python3, fetchPypi }:
3 python3.pkgs.buildPythonApplication rec {
4   pname = "mlarchive2maildir";
5   version = "0.0.9";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "02zjwa7zbcbqj76l0qmg7bbf3fqli60pl2apby3j4zwzcrrryczs";
10   };
12   nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
14   propagatedBuildInputs = with python3.pkgs; [
15     beautifulsoup4
16     click
17     click-log
18     requests
19     six
20   ];
22   meta = with lib; {
23     homepage = "https://github.com/flokli/mlarchive2maildir";
24     description = "Imports mail from (pipermail) archives into a maildir";
25     mainProgram = "mlarchive2maildir";
26     license = licenses.mit;
27     maintainers = with maintainers; [ flokli ];
28   };