nixpkgs/pkgs/development/python-modules/relatorio/default.nix
R. RyanTM f3730d12e5 python37Packages.relatorio: 0.8.1 -> 0.9.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-relatorio/versions
2019-08-05 13:24:02 -07:00

22 lines
551 B
Nix

{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
buildPythonPackage rec {
pname = "relatorio";
version = "0.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "0q93sl7ppfvjxylgq9m5n4xdgv4af7d69yxd84zszq10vjmpsg6k";
};
propagatedBuildInputs = [
genshi
lxml
python_magic
];
meta = {
homepage = http://relatorio.tryton.org/;
description = "A templating library able to output odt and pdf files";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.gpl3;
};
}