My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/relatorio/default.nix

24 lines
570 B

{ lib, fetchPypi, buildPythonPackage, genshi, lxml, python-magic }:
buildPythonPackage rec {
pname = "relatorio";
version = "0.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "6b9390eab696bdf569639ff58794fb9ef8ff19f94feea5b505a6ba06d0cfd026";
};
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;
};
}