pythonPackages.sybase: move to python-modules

This commit is contained in:
Marti Serra 2017-11-08 15:49:28 +01:00
parent eafd703a63
commit e4c7cfc9eb
2 changed files with 31 additions and 24 deletions

View File

@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchurl
, isPy3k
, freetds
}:
buildPythonPackage rec {
name = "python-sybase-${version}";
version = "0.40pre2";
disabled = isPy3k;
src = fetchurl {
url = "https://sourceforge.net/projects/python-sybase/files/python-sybase/${name}/${name}.tar.gz";
sha256 = "0pm88hyn18dy7ljam4mdx9qqgmgraf2zy2wl02g5vsjl4ncvq90j";
};
propagatedBuildInputs = [ freetds ];
SYBASE = freetds;
setupPyBuildFlags = [ "-DHAVE_FREETDS" "-UWANT_BULKCOPY" ];
meta = with stdenv.lib; {
description = "The Sybase module provides a Python interface to the Sybase relational database system";
homepage = http://python-sybase.sourceforge.net;
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
platforms = platforms.unix;
};
}

View File

@ -356,30 +356,7 @@ in {
python-uinput = callPackage ../development/python-modules/python-uinput {}; python-uinput = callPackage ../development/python-modules/python-uinput {};
python-sybase = buildPythonPackage rec { python-sybase = callPackage ../development/python-modules/sybase {};
name = "python-sybase-${version}";
version = "0.40pre2";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "https://sourceforge.net/projects/python-sybase/files/python-sybase/${name}/${name}.tar.gz";
sha256 = "0pm88hyn18dy7ljam4mdx9qqgmgraf2zy2wl02g5vsjl4ncvq90j";
};
propagatedBuildInputs = [ pkgs.freetds ];
SYBASE = pkgs.freetds;
setupPyBuildFlags = [ "-DHAVE_FREETDS" "-UWANT_BULKCOPY" ];
meta = {
description = "The Sybase module provides a Python interface to the Sybase relational database system";
homepage = http://python-sybase.sourceforge.net;
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
platforms = platforms.unix;
};
};
alot = buildPythonPackage rec { alot = buildPythonPackage rec {
rev = "0.5.1"; rev = "0.5.1";