2018-06-23 14:27:58 +01:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python_magic }:
|
2017-02-18 20:04:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "relatorio";
|
2021-09-12 11:55:18 +01:00
|
|
|
version = "0.10.0";
|
2020-01-10 20:17:37 +00:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-12 11:55:18 +01:00
|
|
|
sha256 = "6b9390eab696bdf569639ff58794fb9ef8ff19f94feea5b505a6ba06d0cfd026";
|
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 = {
|
2020-04-01 02:11:51 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|