1{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }: 2 3buildPythonPackage rec { 4 pname = "relatorio"; 5 version = "0.10.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "6b9390eab696bdf569639ff58794fb9ef8ff19f94feea5b505a6ba06d0cfd026"; 10 }; 11 12 propagatedBuildInputs = [ 13 genshi 14 lxml 15 python_magic 16 ]; 17 18 meta = { 19 homepage = "https://relatorio.tryton.org/"; 20 description = "A templating library able to output odt and pdf files"; 21 maintainers = with lib.maintainers; [ johbo ]; 22 license = lib.licenses.gpl3; 23 }; 24}