mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
47 lines
945 B
Nix
47 lines
945 B
Nix
{ stdenv, lib, buildPythonPackage, fetchFromGitHub
|
|
, sqlite
|
|
, cython
|
|
, apsw
|
|
, flask
|
|
, withPostgres ? false, psycopg2
|
|
, withMysql ? false, mysql-connector
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "peewee";
|
|
version = "3.11.2";
|
|
|
|
# pypi release does not provide tests
|
|
src = fetchFromGitHub {
|
|
owner = "coleifer";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "097cafqgk46bf0innwm7xnmsfs6z37hv3alyvrfz6d0iy4scshm5";
|
|
};
|
|
|
|
|
|
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);
|
|
|
|
meta = with stdenv.lib;{
|
|
description = "a small, expressive orm";
|
|
homepage = "http://peewee-orm.com";
|
|
license = licenses.mit;
|
|
};
|
|
}
|