f3730d12e5
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
22 lines
551 B
Nix
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;
|
|
};
|
|
}
|