new package: wtforms

This commit is contained in:
Sibi 2015-02-21 16:45:09 +05:30
parent efbd73dc4c
commit fcc379070f

View File

@ -4225,6 +4225,24 @@ let
};
};
wtforms = buildPythonPackage rec {
version = "2.0.2";
name = "wtforms-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/W/WTForms/WTForms-${version}.zip";
md5 = "613cf723ab40537705bec02733c78d95";
};
propagatedBuildInputs = with self; [ ordereddict Babel ];
meta = {
homepage = https://github.com/wtforms/wtforms;
description = "A flexible forms validation and rendering library for Python";
license = licenses.bsd3;
};
};
flexget = buildPythonPackage rec {
version = "1.2.234";
name = "FlexGet-${version}";