summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-sql/default.nix
blob: 451138fa38d8f016b3b0a22763f96a22d44a89c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, fetchPypi, buildPythonPackage }:

buildPythonPackage rec {
  pname = "python-sql";
  version = "1.0.0";
  src = fetchPypi {
    inherit pname version;
    sha256 = "05ni936y0ia9xmryl7mlhbj9i80nnvq1bi4zxhb96rv7yvpb3fqb";
  };
  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;
  };
}