Unbork journals audit logs and introduce audit option (#379629)
[NixPkgs.git] / pkgs / by-name / cs / csv2odf / package.nix
blobb3f5c30177271bfe8542a6cfcabb927fa980ea5d
2   lib,
3   python3,
4   fetchurl,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "csv2odf";
9   version = "2.09";
10   src = fetchurl {
11     url = "mirror://sourceforge/project/${pname}/${pname}-${version}/${pname}-${version}.tar.gz";
12     sha256 = "09l0yfay89grjdzap2h11f0hcyn49np5zizg2yyp2aqgjs8ki57p";
13   };
15   meta = with lib; {
16     homepage = "https://sourceforge.net/p/csv2odf/wiki/Main_Page/";
17     description = "Convert csv files to OpenDocument Format";
18     mainProgram = "csv2odf";
19     longDescription = ''
20       csv2odf is a command line tool that can convert a comma separated value
21       (csv) file to an odf, ods, html, xlsx, or docx document that can be viewed in
22       LibreOffice and other office productivity programs. csv2odf is useful for
23       creating reports from databases and other data sources that produce csv files.
24       csv2odf can be combined with cron and shell scripts to automatically generate
25       business reports.
27       The output format (fonts, number formatting, etc.) is controlled by a
28       template file that you can design in your office application of choice.
29     '';
30     license = licenses.gpl3;
31     maintainers = with maintainers; [ leenaars ];
32   };