Merge pull request #22944 from johbo/add-trytond
trytond: init at 4.2.1
This commit is contained in:
16
pkgs/development/python-modules/python-sql/default.nix
Normal file
16
pkgs/development/python-modules/python-sql/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
20
pkgs/development/python-modules/relatorio/default.nix
Normal file
20
pkgs/development/python-modules/relatorio/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user