diff options
| author | numkem <numkem@numkem.org> | 2018-06-15 15:35:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-15 15:35:23 -0400 |
| commit | cfbef4a9e6e73f14fbfd5f0b8e9ef8966393976d (patch) | |
| tree | ad1269cffa620ce756c0533e438ac86febdf4add /pkgs/development/python-modules/python-sql | |
| parent | 47aa1da7a020e96764ef522c2d63398aa0332798 (diff) | |
| parent | 54ea1cd58aefde76f7ab2f63e955b9c622c70d1f (diff) | |
Merge pull request #1 from NixOS/master
Sync with upstream
Diffstat (limited to 'pkgs/development/python-modules/python-sql')
| -rw-r--r-- | pkgs/development/python-modules/python-sql/default.nix | 17 |
1 files changed, 17 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..f5ce3a156266 --- /dev/null +++ b/pkgs/development/python-modules/python-sql/default.nix @@ -0,0 +1,17 @@ +{ lib, fetchurl, buildPythonPackage }: + +buildPythonPackage rec { + pname = "python-sql"; + name = "${pname}-${version}"; + version = "0.9"; + src = fetchurl { + url = "mirror://pypi/p/python-sql/${name}.tar.gz"; + sha256 = "07b51cc1c977ef5480fe671cae5075ad4b68a6fc67f4569782e06f012456d35c"; + }; + 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; + }; +} |
