summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-sql
diff options
context:
space:
mode:
authorJohannes Bornhold <johannes@bornhold.name>2017-02-18 21:00:22 +0100
committerJohannes Bornhold <johannes@bornhold.name>2017-02-20 23:02:04 +0100
commita2dd4ea7d157a88687f2f7cb077ef1c094ba1d49 (patch)
treebff39206f9c540d753f323133c6287e2bdfe67d7 /pkgs/development/python-modules/python-sql
parentdb9509767434c29bd83adf455c4d7a98cb1ca8b0 (diff)
python-sql: init at 0.8
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;
+ };
+}