2025-07-24 13:55:40 +02:00

65 lines
1.2 KiB
Nix

{
lib,
apsw,
buildPythonPackage,
cython,
fetchFromGitHub,
flask,
python,
sqlite,
withMysql ? false,
mysql-connector,
withPostgres ? false,
psycopg2,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "peewee";
version = "3.18.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "coleifer";
repo = "peewee";
tag = version;
hash = "sha256-7MLDhMiW9LaedPMQ2QqSqos4SegzUmTX1joyV18MkEg=";
};
build-system = [ setuptools ];
buildInputs = [
sqlite
cython
];
propagatedBuildInputs = [
apsw
]
++ lib.optionals withPostgres [ psycopg2 ]
++ lib.optionals withMysql [ mysql-connector ];
nativeCheckInputs = [ flask ];
doCheck = withPostgres;
checkPhase = ''
rm -r playhouse # avoid using the folder in the cwd
${python.interpreter} runtests.py
'';
pythonImportsCheck = [ "peewee" ];
meta = with lib; {
description = "Python ORM with support for various database implementation";
homepage = "http://peewee-orm.com";
changelog = "https://github.com/coleifer/peewee/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
mainProgram = "pwiz.py";
};
}