summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-sql
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-02-21 08:03:43 +0100
committerGitHub <noreply@github.com>2017-02-21 08:03:43 +0100
commit5bd6331b29131368695a42934a4936ae66b58597 (patch)
tree8218eaa436bb73b657f190d00d2688fe0bbc02e5 /pkgs/development/python-modules/python-sql
parent1f4940368ae5ce2bd61dcb1474c11e6803334987 (diff)
parent6f8a44820e04c0635c258e7575b5d511fece6a59 (diff)
Merge pull request #22944 from johbo/add-trytond
trytond: init at 4.2.1
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;
+ };
+}