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