1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 19:15:39 +00:00
nixpkgs/pkgs/development/python-modules/relatorio/default.nix

23 lines
620 B
Nix
Raw Normal View History

2017-08-25 09:52:18 +01:00
{ lib, fetchurl, buildPythonPackage, genshi, lxml, python_magic }:
2017-02-18 20:04:52 +00:00
buildPythonPackage rec {
pname = "relatorio";
name = "${pname}-${version}";
2017-10-25 19:04:35 +01:00
version = "0.7.1";
2017-02-18 20:04:52 +00:00
src = fetchurl {
url = "mirror://pypi/r/relatorio/${name}.tar.gz";
2017-10-25 19:04:35 +01:00
sha256 = "744f1e39313f037a0ab52a154338ece151d83e5442a9278db1f8ce450ce6c2cd";
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
];
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;
};
}