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

buildPythonPackage rec {
  pname = "python-sql";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "05ni936y0ia9xmryl7mlhbj9i80nnvq1bi4zxhb96rv7yvpb3fqb";
  };

  meta = {
    homepage = https://python-sql.tryton.org/;
    description = "A library to write SQL queries in a pythonic way";
    maintainers = with lib.maintainers; [ johbo ];
    license = lib.licenses.bsd3;
  };
}