Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, fetchurl, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "python-sql"; 5 name = "${pname}-${version}"; 6 version = "0.9"; 7 src = fetchurl { 8 url = "mirror://pypi/p/python-sql/${name}.tar.gz"; 9 sha256 = "07b51cc1c977ef5480fe671cae5075ad4b68a6fc67f4569782e06f012456d35c"; 10 }; 11 meta = { 12 homepage = http://python-sql.tryton.org/; 13 description = "A library to write SQL queries in a pythonic way"; 14 maintainers = with lib.maintainers; [ johbo ]; 15 license = lib.licenses.bsd3; 16 }; 17}