pythonPackages.starlette-wtf: init at 0.4.3

This commit is contained in:
Jennifer Graul 2023-07-12 13:39:10 +02:00 committed by Yureka
parent d54e65f519
commit 3857999583
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,45 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, itsdangerous
, python-multipart
, starlette
, wtforms
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "starlette-wtf";
version = "0.4.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "muicss";
repo = "starlette-wtf";
rev = "v${version}";
hash = "sha256-TSxcIgINRjQwiyhpGOEEpXJKcPlhFCxMQh4/GY1g1lw=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
itsdangerous
python-multipart
starlette
wtforms
];
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "A 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;
maintainers = teams.wdz.members;
};
}

View File

@ -13648,6 +13648,8 @@ self: super: with self; {
inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices;
};
starlette-wtf = callPackage ../development/python-modules/starlette-wtf { };
starkbank-ecdsa = callPackage ../development/python-modules/starkbank-ecdsa { };
starline = callPackage ../development/python-modules/starline { };