python-sql: init at 0.8

This commit is contained in:
Johannes Bornhold 2017-02-18 21:00:22 +01:00
parent db95097674
commit a2dd4ea7d1
2 changed files with 18 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

@ -332,6 +332,8 @@ in {
pysideTools = callPackage ../development/python-modules/pyside/tools.nix { };
python-sql = callPackage ../development/python-modules/python-sql { };
pytimeparse = buildPythonPackage rec {
pname = "pytimeparse";
version = "1.1.6";