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

buildPythonPackage rec {
  pname = "python-sql";
  name = "${pname}-${version}";
  version = "0.8";
  src = fetchurl {
    url = "mirror://pypi/p/python-sql/${name}.tar.gz";
    sha256 = "0xik939sxqfqqbpgcsnfjnws692bjip32khgwhq1ycphfy7df3h2";
  };
  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;
  };
}