pythonPackages.starlette-wtf: init at 0.4.3
This commit is contained in:
parent
d54e65f519
commit
3857999583
45
pkgs/development/python-modules/starlette-wtf/default.nix
Normal file
45
pkgs/development/python-modules/starlette-wtf/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user