pythonPackages.pymssql: remove

has been abandoned upstream.
https://github.com/pymssql/pymssql
This commit is contained in:
Jonathan Ringer 2020-05-04 21:24:05 -07:00 committed by Jon
parent e2e54225bf
commit d8f894d9ae
2 changed files with 1 additions and 27 deletions

@ -1,26 +0,0 @@
{ 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 ];
};
}

@ -7266,7 +7266,7 @@ in {
scour = callPackage ../development/python-modules/scour { };
pymssql = callPackage ../development/python-modules/pymssql { };
pymssql = throw "pymssql has been abandoned upstream."; # added 2020-05-04
nanoleaf = callPackage ../development/python-modules/nanoleaf { };