14 # optional-dependencies
21 buildPythonPackage rec {
26 disabled = pythonOlder "3.7";
28 src = fetchFromGitHub {
31 rev = "refs/tags/${version}";
32 hash = "sha256-L6DmB7iVpJR775oRxuEkCKWlUJnmw8VPZTr2dZbqeEc=";
41 propagatedBuildInputs = [
45 passthru.optional-dependencies = {
53 ] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
55 pythonImportsCheck = [
60 description = "A flexible forms validation and rendering library for Python";
61 homepage = "https://github.com/wtforms/wtforms";
62 changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst";
63 license = licenses.bsd3;
64 maintainers = with maintainers; [ bhipple ];