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-03-18 12:27:51 +01:00 committed by Frederik Rietdijk
parent 78901322d8
commit 05d9cf5f38

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";