My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/python-modules/relatorio/default.nix

25 lines
555 B

{ 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;
};
}