summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-sql
diff options
context:
space:
mode:
authorTomasz Czyż <tomasz.czyz@gmail.com>2017-04-07 10:28:58 +0100
committerGitHub <noreply@github.com>2017-04-07 10:28:58 +0100
commite57cf5efd110e33fcce675b24d3f06f7739c5940 (patch)
tree4e951677c7a0a9bf0a86fb9cbe386c792878d472 /pkgs/development/python-modules/python-sql
parentab22a0803996c40eee80aa0f81d151090ab15b01 (diff)
parent78adf1832f2bec0cb90141202262ca5f7b9a7a30 (diff)
Merge branch 'master' into postgresql-tests
Diffstat (limited to 'pkgs/development/python-modules/python-sql')
-rw-r--r--pkgs/development/python-modules/python-sql/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-sql/default.nix b/pkgs/development/python-modules/python-sql/default.nix
new file mode 100644
index 000000000000..30f734d57193
--- /dev/null
+++ b/pkgs/development/python-modules/python-sql/default.nix
@@ -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;
+ };
+}