pythonPackages.demjson: disable on python 3

It doesn't seem to support _any_ python 3 versions.
This commit is contained in:
Bjørn Forsman 2019-09-15 16:31:57 +02:00
parent a6edca1aca
commit 6ba044c166

View File

@ -1,9 +1,9 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy36 }:
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "demjson";
version = "2.2.4";
disabled = isPy36;
disabled = isPy3k;
src = fetchPypi {
inherit pname version;