Merge pull request #13547 from teh/master
wtforms: Update to 2.1, make work on python3, disable tests for now.
This commit is contained in:
commit
45160101e9
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user