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

23 lines
620 B
Nix
Raw Normal View History

2017-08-25 08:52:18 +00:00
{ lib, fetchurl, buildPythonPackage, genshi, lxml, python_magic }:
2017-02-18 20:04:52 +00:00
buildPythonPackage rec {
pname = "relatorio";
name = "${pname}-${version}";
2017-08-24 17:34:20 +00:00
version = "0.7.0";
2017-02-18 20:04:52 +00:00
src = fetchurl {
url = "mirror://pypi/r/relatorio/${name}.tar.gz";
2017-08-24 17:34:20 +00:00
sha256 = "efd68d96573b15c59c24a8f420ed14210ce51de535a8470d14381f2bed69d845";
2017-02-18 20:04:52 +00:00
};
propagatedBuildInputs = [
genshi
lxml
2017-08-25 08:52:18 +00:00
python_magic
2017-02-18 20:04:52 +00:00
];
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;
};
}