nixpkgs/pkgs/development/python-modules/relatorio/default.nix

25 lines
555 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
2017-02-18 21:04:52 +01:00
buildPythonPackage rec {
pname = "relatorio";
version = "0.9.0";
2020-01-10 21:17:37 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0q93sl7ppfvjxylgq9m5n4xdgv4af7d69yxd84zszq10vjmpsg6k";
2017-02-18 21:04:52 +01:00
};
2020-01-10 21:17:37 +01:00
2017-02-18 21:04:52 +01:00
propagatedBuildInputs = [
genshi
lxml
2017-08-25 10:52:18 +02:00
python_magic
2017-02-18 21:04:52 +01:00
];
2020-01-10 21:17:37 +01:00
2017-02-18 21:04:52 +01:00
meta = {
2020-01-10 21:17:37 +01:00
homepage = https://relatorio.tryton.org/;
2017-02-18 21:04:52 +01:00
description = "A templating library able to output odt and pdf files";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.gpl3;
};
}