Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / wtforms-bootstrap5 / default.nix
blob0150dcb2d72aeb2eb6849d87783eca0c8eb3ff57
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , wtforms
5 , poetry-core
6 , pytestCheckHook
7 , lxml
8 }:
10 buildPythonPackage rec {
11   pname = "wtforms-bootstrap5";
12   version = "0.3.0";
13   format = "pyproject";
15   src = fetchFromGitHub {
16     owner = "LaunchPlatform";
17     repo = "wtforms-bootstrap5";
18     rev = version;
19     hash = "sha256-TJJ3KOeC9JXnxK0YpnfeBNq1KHwaAZ4+t9CXbc+85Ro=";
20   };
22   nativeBuildInputs = [
23     poetry-core
24   ];
26   propagatedBuildInputs = [
27     wtforms
28   ];
30   nativeCheckInputs = [
31     pytestCheckHook
32     lxml
33   ];
35   meta = with lib; {
36     description = "Simple library for rendering WTForms in HTML as Bootstrap 5 form controls";
37     homepage = "https://github.com/LaunchPlatform/wtforms-bootstrap5";
38     changelog = "https://github.com/LaunchPlatform/wtforms-bootstrap5/releases/tag/${version}";
39     license = licenses.mit;
40     maintainers = teams.wdz.members;
41   };