Merge pull request #6495 from psibi/python-wtf-patch

new package: wtforms
This commit is contained in:
lethalman 2015-02-26 09:46:39 +01:00
commit 222725d062
1 changed files with 18 additions and 0 deletions

View File

@ -4321,6 +4321,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.278";
name = "FlexGet-${version}";