depot/third_party/nixpkgs/pkgs/development/python-modules/peewee/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

64 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.15.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "coleifer";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-2rxGOUCITEHuM83qhaKQGK4jSf4r8hcBAGxRImT/rhE=";
};
buildInputs = [
sqlite
cython
];
propagatedBuildInputs = [
apsw
] ++ lib.optional withPostgres [
psycopg2
] ++ lib.optional withMysql [
mysql-connector
];
checkInputs = [
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; [ ];
};
}