diff options
| author | lprndn <lprndn@gmail.com> | 2017-04-03 21:37:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-03 21:37:11 +0200 |
| commit | f259fa6e913ab24077385cc7c76af2b60cacad60 (patch) | |
| tree | ed63184d719eeb887842d0f9ff0c856cc017fbae /pkgs/development/python-modules/python-sql | |
| parent | 8a534d53281c5aead91a67ca526d8cb7f27a14c5 (diff) | |
| parent | 75319eb2035e7c9ec0a8f45ab816dd34689fd77a (diff) | |
Merge branch 'master' into lprndn_Nixpkgs
Diffstat (limited to 'pkgs/development/python-modules/python-sql')
| -rw-r--r-- | pkgs/development/python-modules/python-sql/default.nix | 16 |
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; + }; +} |
