5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
62 lines
1.2 KiB
Nix
62 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.17.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "coleifer";
|
|
repo = "peewee";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-HluoCXblqwaOb+gtAhvaYshTj9CtHoegn0QUaq0V+eA=";
|
|
};
|
|
|
|
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/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
mainProgram = "pwiz.py";
|
|
};
|
|
}
|