Merge pull request #22944 from johbo/add-trytond

trytond: init at 4.2.1
This commit is contained in:
Frederik Rietdijk
2017-02-21 08:03:43 +01:00
committed by GitHub
5 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ lib, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
name = "python-sql-${version}";
version = "0.8";
src = fetchurl {
url = "mirror://pypi/p/python-sql/${name}.tar.gz";
sha256 = "0xik939sxqfqqbpgcsnfjnws692bjip32khgwhq1ycphfy7df3h2";
};
meta = {
homepage = http://python-sql.tryton.org/;
description = "A library to write SQL queries in a pythonic way";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.bsd3;
};
}

View File

@@ -0,0 +1,20 @@
{ lib, fetchurl, buildPythonPackage, genshi, lxml }:
buildPythonPackage rec {
name = "relatorio-${version}";
version = "0.6.4";
src = fetchurl {
url = "mirror://pypi/r/relatorio/${name}.tar.gz";
sha256 = "0lincq79mzgazwd9gh41dybjh9c3n87r83pl8nk3j79aihyfk84z";
};
propagatedBuildInputs = [
genshi
lxml
];
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;
};
}