2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2017-11-08 14:49:28 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchurl
|
|
|
|
, isPy3k
|
|
|
|
, freetds
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = "python-sybase";
|
2017-11-08 14:49:28 +00:00
|
|
|
version = "0.40pre2";
|
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://sourceforge.net/projects/python-sybase/files/python-sybase/${pname}-${version}/${pname}-${version}.tar.gz";
|
2017-11-08 14:49:28 +00:00
|
|
|
sha256 = "0pm88hyn18dy7ljam4mdx9qqgmgraf2zy2wl02g5vsjl4ncvq90j";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ freetds ];
|
|
|
|
|
|
|
|
SYBASE = freetds;
|
|
|
|
setupPyBuildFlags = [ "-DHAVE_FREETDS" "-UWANT_BULKCOPY" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-11-08 14:49:28 +00:00
|
|
|
description = "The Sybase module provides a Python interface to the Sybase relational database system";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://python-sybase.sourceforge.net";
|
2017-11-08 14:49:28 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ veprbl ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|