about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pymssql/default.nix
blob: 954be3f40e2d0b1131bdf8ea1ee0802149fb2845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchPypi, freetds, cython, setuptools-git }:

buildPythonPackage rec {
  pname = "pymssql";
  version = "3.0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4d0ed31c76983d723c0c979b18e2273623621e630ca4901f17a86128aca13f84";
  };

  buildInputs = [cython setuptools-git];
  propagatedBuildInputs = [freetds];

  # The tests require a running instance of SQLServer, so we skip them
  doCheck = false;

  meta = with lib; {
    homepage = http://pymssql.org/en/stable/;
    description = "A simple database interface for Python that builds on top
      of FreeTDS to provide a Python DB-API (PEP-249) interface to Microsoft
      SQL Server";
    license = licenses.lgpl21;
    maintainers = with maintainers; [ mredaelli ];
  };
}