wtforms: Update to 2.1, make work on python3, disable tests for now.

This commit is contained in:
Tom Hunger 2016-02-28 15:13:23 +00:00
parent 070dccae7b
commit baeedda1a5

View file

@ -8935,15 +8935,19 @@ in modules // {
};
wtforms = buildPythonPackage rec {
version = "2.0.2";
version = "2.1";
name = "wtforms-${version}";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/W/WTForms/WTForms-${version}.zip";
md5 = "613cf723ab40537705bec02733c78d95";
sha256 = "0vyl26y9cg409cfyj8rhqxazsdnd0jipgjw06civhrd53yyi1pzz";
};
propagatedBuildInputs = with self; [ ordereddict Babel ];
# Django tests are broken "django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet."
# This is fixed in master I believe but not yet in 2.1;
doCheck = false;
propagatedBuildInputs = with self; ([ Babel ] ++ (optionals isPy26 [ ordereddict ]));
meta = {
homepage = https://github.com/wtforms/wtforms;