2017-05-27 13:05:39 +01:00
|
|
|
{ lib
|
|
|
|
, fetchPypi
|
|
|
|
, buildPythonPackage
|
2018-01-20 11:26:26 +00:00
|
|
|
, pytest
|
2017-05-27 13:05:39 +01:00
|
|
|
, mock
|
|
|
|
, isPy3k
|
|
|
|
, pysqlite
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "SQLAlchemy";
|
2018-10-06 11:56:20 +01:00
|
|
|
version = "1.2.12";
|
2017-05-27 13:05:39 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-06 11:56:20 +01:00
|
|
|
sha256 = "c5951d9ef1d5404ed04bae5a16b60a0779087378928f997a294d1229c6ca4d3e";
|
2017-05-27 13:05:39 +01:00
|
|
|
};
|
|
|
|
|
2017-08-25 18:03:41 +01:00
|
|
|
checkInputs = [
|
2018-01-20 11:26:26 +00:00
|
|
|
pytest
|
2017-08-25 18:03:41 +01:00
|
|
|
mock
|
|
|
|
# Disable pytest_xdist tests for now, because our version seems to be too new.
|
|
|
|
# pytest_xdist
|
|
|
|
] ++ lib.optional (!isPy3k) pysqlite;
|
2017-05-27 13:05:39 +01:00
|
|
|
|
|
|
|
checkPhase = ''
|
2018-06-22 11:36:58 +01:00
|
|
|
py.test -k "not test_round_trip_direct_type_affinity"
|
2017-05-27 13:05:39 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = http://www.sqlalchemy.org/;
|
|
|
|
description = "A Python SQL toolkit and Object Relational Mapper";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|