Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 569 B view raw
1{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }: 2 3buildPythonPackage rec { 4 pname = "relatorio"; 5 version = "0.9.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0753e78b235b1e8da275509351257a861cf2cf9fafe1b414f8c1deb858a4f94e"; 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}