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