depot/third_party/nixpkgs/pkgs/development/python-modules/relatorio/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

24 lines
569 B
Nix

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