pythonPackages.anyjson: Enable for python3

Only the tests are unvalid for anyjson. The module itself is python3
valid.
This commit is contained in:
Lancelot SIX
2016-05-28 12:30:51 +02:00
committed by Frederik Rietdijk
parent 78901322d8
commit 05d9cf5f38
+3 -1
View File
@@ -743,7 +743,9 @@ in modules // {
anyjson = buildPythonPackage rec {
name = "anyjson-0.3.3";
disabled = isPy3k;
# The tests are written in a python2 syntax but anyjson is python3 valid
doCheck = !isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/a/anyjson/${name}.tar.gz";