sqlalchemy: 0.7.9 -> 0.7.10, apply patch to fix tests
This commit is contained in:
parent
f34a79ad35
commit
3ee369ce5a
@ -5002,14 +5002,21 @@ pythonPackages = python.modules // rec {
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
sqlalchemy = buildPythonPackage {
|
sqlalchemy = buildPythonPackage rec {
|
||||||
name = "sqlalchemy-0.7.9";
|
name = "sqlalchemy-${version}";
|
||||||
|
version = "0.7.10";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/sqlalchemy/0.7.9/SQLAlchemy-0.7.9.tar.gz;
|
url = "http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-${version}.tar.gz";
|
||||||
md5 = "c4852d586d95a59fbc9358f4467875d5";
|
sha256 = "0rhxgr85xdhjn467qfs0dkyj8x46zxcv6ad3dfx3w14xbkb3kakp";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# see https://groups.google.com/forum/#!searchin/sqlalchemy/module$20logging$20handlers/sqlalchemy/ukuGhmQ2p6g/2_dOpBEYdDYJ
|
||||||
|
# waiting for 0.7.11 release
|
||||||
|
../development/python-modules/sqlalchemy-0.7.10-test-failures.patch
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [ nose ];
|
buildInputs = [ nose ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ python.modules.sqlite3 ];
|
propagatedBuildInputs = [ python.modules.sqlite3 ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user