nixpkgs/pkgs/development/python-modules/peewee/default.nix

65 lines
1.1 KiB
Nix

{ lib
, apsw
, buildPythonPackage
, cython
, fetchFromGitHub
, flask
, python
, sqlite
, withMysql ? false
, mysql-connector
, withPostgres ? false
, psycopg2
, pythonOlder
}:
buildPythonPackage rec {
pname = "peewee";
version = "3.16.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "coleifer";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-eHTbVhgVqxMR3ZuaC6FPyYbxRpRBi53EfDqERpPBjVQ=";
};
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";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}