nixpkgs/pkgs/development/python-modules/relatorio/default.nix

25 lines
569 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
2017-02-18 20:04:52 +00:00
buildPythonPackage rec {
pname = "relatorio";
2020-08-16 18:31:14 +01:00
version = "0.9.2";
2020-01-10 20:17:37 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:14 +01:00
sha256 = "0753e78b235b1e8da275509351257a861cf2cf9fafe1b414f8c1deb858a4f94e";
2017-02-18 20:04:52 +00:00
};
2020-01-10 20:17:37 +00:00
2017-02-18 20:04:52 +00:00
propagatedBuildInputs = [
genshi
lxml
2017-08-25 09:52:18 +01:00
python_magic
2017-02-18 20:04:52 +00:00
];
2020-01-10 20:17:37 +00:00
2017-02-18 20:04:52 +00:00
meta = {
homepage = "https://relatorio.tryton.org/";
2017-02-18 20:04:52 +00:00
description = "A templating library able to output odt and pdf files";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.gpl3;
};
}