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