Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 551 B view raw
1{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }: 2 3buildPythonPackage rec { 4 pname = "relatorio"; 5 version = "0.9.0"; 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "0q93sl7ppfvjxylgq9m5n4xdgv4af7d69yxd84zszq10vjmpsg6k"; 9 }; 10 propagatedBuildInputs = [ 11 genshi 12 lxml 13 python_magic 14 ]; 15 meta = { 16 homepage = http://relatorio.tryton.org/; 17 description = "A templating library able to output odt and pdf files"; 18 maintainers = with lib.maintainers; [ johbo ]; 19 license = lib.licenses.gpl3; 20 }; 21}