mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.anyjson: Enable for python3
Only the tests are unvalid for anyjson. The module itself is python3 valid.
This commit is contained in:
parent
78901322d8
commit
05d9cf5f38
1 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue