Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

49 lines
939 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
itsdangerous,
python-multipart,
starlette,
wtforms,
httpx,
jinja2,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "starlette-wtf";
version = "0.4.5";
format = "pyproject";
src = fetchFromGitHub {
owner = "muicss";
repo = "starlette-wtf";
tag = version;
hash = "sha256-88zU2NAsdty2OhHauwQ5+6LazuRDYPoqN9IIipI1t2Q=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
itsdangerous
python-multipart
starlette
wtforms
];
nativeCheckInputs = [
pytestCheckHook
httpx
jinja2
];
meta = with lib; {
description = "Simple tool for integrating Starlette and WTForms";
changelog = "https://github.com/muicss/starlette-wtf/blob/v${version}/CHANGELOG.md";
homepage = "https://github.com/muicss/starlette-wtf";
license = licenses.mit;
teams = [ teams.wdz ];
};
}