25 lines
557 B
Nix
25 lines
557 B
Nix
|
{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "relatorio";
|
||
|
version = "0.9.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "0an1yiy4pxfazrbaw4sm8ybhxqn46yzsakkl9qjklafn1j69lnza";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
genshi
|
||
|
lxml
|
||
|
python_magic
|
||
|
];
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://relatorio.tryton.org/";
|
||
|
description = "A templating library able to output odt and pdf files";
|
||
|
maintainers = with lib.maintainers; [ johbo ];
|
||
|
license = lib.licenses.gpl3;
|
||
|
};
|
||
|
}
|