python39Packages.peewee: 3.14.9 -> 3.14.10

This commit is contained in:
Fabian Affolter 2022-04-27 00:05:48 +02:00
parent d123039b2e
commit 229890736b

View file

@ -14,14 +14,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "peewee"; pname = "peewee";
version = "3.14.9"; version = "3.14.10";
format = "setuptools"; format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "coleifer"; owner = "coleifer";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-8rwWKsOOYUrk2k1piCurb1LkB9zzmSITq52qWdyx4yk="; hash = "sha256-k3kKAImE1aVlmsSPXpaIkAVspAsAo5Hz6/n7u6+zTzA=";
}; };
buildInputs = [ buildInputs = [
@ -31,8 +31,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
apsw apsw
] ++ lib.optional withPostgres psycopg2 ] ++ lib.optional withPostgres [
++ lib.optional withMysql mysql-connector; psycopg2
] ++ lib.optional withMysql [
mysql-connector
];
checkInputs = [ checkInputs = [
flask flask