37 lines
912 B
Nix
37 lines
912 B
Nix
{ stdenv, lib, fetchPypi, buildPythonPackage, isPy3k, isPy35
|
|
, mock
|
|
, pysqlite
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "SQLAlchemy";
|
|
version = "1.3.19";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "3bba2e9fbedb0511769780fe1d63007081008c5c2d7d715e91858c94dbaa260e";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
mock
|
|
] ++ lib.optional (!isPy3k) pysqlite;
|
|
|
|
postInstall = ''
|
|
sed -e 's:--max-worker-restart=5::g' -i setup.cfg
|
|
'';
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
# disable mem-usage tests on mac, has trouble serializing pickle files
|
|
disabledTests = lib.optionals isPy35 [ "exception_persistent_flush_py3k "]
|
|
++ lib.optionals stdenv.isDarwin [ "MemUsageWBackendTest" "MemUsageTest" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.sqlalchemy.org/";
|
|
description = "A Python SQL toolkit and Object Relational Mapper";
|
|
license = licenses.mit;
|
|
};
|
|
}
|