37 lines
718 B
Nix
37 lines
718 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, pytest
|
|
, mock
|
|
, pytest_xdist
|
|
, isPy3k
|
|
, pysqlite
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "SQLAlchemy";
|
|
name = "${pname}-${version}";
|
|
version = "1.2.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "7cb00cc9b9f92ef8b4391c8a2051f81eeafefe32d63c6b395fd51401e9a39edb";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest
|
|
mock
|
|
# Disable pytest_xdist tests for now, because our version seems to be too new.
|
|
# pytest_xdist
|
|
] ++ lib.optional (!isPy3k) pysqlite;
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = http://www.sqlalchemy.org/;
|
|
description = "A Python SQL toolkit and Object Relational Mapper";
|
|
license = licenses.mit;
|
|
};
|
|
} |