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