pythonPackages.demjson: disable on python 3
It doesn't seem to support _any_ python 3 versions.
This commit is contained in:
parent
a6edca1aca
commit
6ba044c166
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue