ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / wtforms / default.nix
blobef2e06cc3e71f50d6f0e0291b59ef858f4444379
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , markupsafe
5 , babel
6 , pytestCheckHook
7 , email-validator
8 }:
10 buildPythonPackage rec {
11   version = "3.0.1";
12   pname = "wtforms";
14   src = fetchPypi {
15     pname = "WTForms";
16     inherit version;
17     sha256 = "1g654ghavds387hqxmhg9s8x222x89wbq1ggzxbsyn6x2axindbb";
18   };
20   propagatedBuildInputs = [ markupsafe babel ];
23   checkInputs = [
24     pytestCheckHook
25     email-validator
26   ];
28   pythonImportsCheck = [ "wtforms" ];
30   meta = with lib; {
31     description = "A flexible forms validation and rendering library for Python";
32     homepage = "https://github.com/wtforms/wtforms";
33     changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst";
34     license = licenses.bsd3;
35     maintainers = [ maintainers.bhipple ];
36   };