WIP: Add indico profile + required packages

Signed-off-by: Jeltz <jeltz@federez.net>
This commit is contained in:
jeltz 2025-02-10 01:38:21 +01:00
parent bb03bd9054
commit d12f9d91d1
Signed by: jeltz
GPG key ID: 800882B66C0C3326
17 changed files with 1377 additions and 90 deletions

View file

@ -0,0 +1,37 @@
{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
sqlalchemy,
wtforms,
}:
buildPythonPackage rec {
pname = "wtforms-sqlalchemy";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "wtforms";
repo = "wtforms-sqlalchemy";
rev = "refs/tags/${version}";
hash = "sha256-uR09LYfcyre+AC2TTEIhpjSI7y4Yo0GJ20smkzo5PRY=";
};
build-system = [ setuptools ];
dependencies = [
sqlalchemy
wtforms
];
pythonImportsCheck = [ "wtforms_sqlalchemy" ];
meta = {
description = "WTForms integration for SQLAlchemy";
homepage = "https://github.com/wtforms/wtforms-sqlalchemy";
changelog = "https://github.com/wtforms/wtforms-sqlalchemy/blob/${version}/CHANGES.rst";
license = lib.licenses.bsd3;
};
}