python3Packages.wtf-peewee: 3.0.6 -> 3.1.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:40:49 +01:00
parent 47d8d05af9
commit eb227fe54c
@@ -1,26 +1,28 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
peewee,
wtforms,
python,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "wtf-peewee";
version = "3.0.6";
version = "3.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-gZZEam46tk8SJ/ulqKsxvoF3X3PYGfdfyv7P1cDAC5I=";
src = fetchFromGitHub {
owner = "coleifer";
repo = "wtf-peewee";
tag = finalAttrs.version;
hash = "sha256-9gVvcPFVA3051Y0sn0mLq1ejKqcGlKZVbIaQ/uH5f4Y=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
peewee
wtforms
];
@@ -37,4 +39,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = [ ];
};
}
})