2021-01-24 00:29:22 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2018-10-01 22:12:46 +01:00
|
|
|
, sqlite
|
|
|
|
, cython
|
|
|
|
, apsw
|
|
|
|
, flask
|
|
|
|
, withPostgres ? false, psycopg2
|
|
|
|
, withMysql ? false, mysql-connector
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
|
|
|
pname = "peewee";
|
2020-06-06 13:00:00 +01:00
|
|
|
version = "3.13.3";
|
2018-10-01 22:12:46 +01:00
|
|
|
|
|
|
|
# pypi release does not provide tests
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "coleifer";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-06-06 13:00:00 +01:00
|
|
|
sha256 = "1r67hxb9m6v0xbnbqfnsw6dahmdr94pf81b4x51jfw6x9sa4izi4";
|
2018-10-01 22:12:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
checkInputs = [ flask ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
rm -r playhouse # avoid using the folder in the cwd
|
|
|
|
python runtests.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
sqlite
|
|
|
|
cython # compile speedups
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
apsw # sqlite performance improvement
|
|
|
|
] ++ (lib.optional withPostgres psycopg2)
|
|
|
|
++ (lib.optional withMysql mysql-connector);
|
|
|
|
|
2020-06-06 13:00:00 +01:00
|
|
|
doCheck = withPostgres;
|
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
meta = with lib; {
|
2018-10-01 22:12:46 +01:00
|
|
|
description = "a small, expressive orm";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://peewee-orm.com";
|
2018-10-01 22:12:46 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|