Files
nixpkgs/pkgs/development/python-modules/sqlalchemy/default.nix
T

37 lines
725 B
Nix
Raw Normal View History

2017-05-27 14:05:39 +02:00
{ lib
, fetchPypi
, buildPythonPackage
, pytest_30
2017-05-27 14:05:39 +02:00
, mock
, pytest_xdist
, isPy3k
, pysqlite
}:
buildPythonPackage rec {
pname = "SQLAlchemy";
name = "${pname}-${version}";
2017-11-05 13:16:18 +01:00
version = "1.1.15";
2017-05-27 14:05:39 +02:00
src = fetchPypi {
inherit pname version;
2017-11-05 13:16:18 +01:00
sha256 = "8b79a5ed91cdcb5abe97b0045664c55c140aec09e5dd5c01303e23de5fe7a95a";
2017-05-27 14:05:39 +02:00
};
checkInputs = [
pytest_30
mock
# Disable pytest_xdist tests for now, because our version seems to be too new.
# pytest_xdist
] ++ lib.optional (!isPy3k) pysqlite;
2017-05-27 14:05:39 +02:00
checkPhase = ''
py.test
'';
meta = with lib; {
homepage = http://www.sqlalchemy.org/;
description = "A Python SQL toolkit and Object Relational Mapper";
license = licenses.mit;
};
}