ujson: version 3.0.0 requires python 3.5+
This commit is contained in:
parent
f0cfc7eba9
commit
25d3591fd1
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
, isPyPy
|
||||
, setuptools_scm
|
||||
}:
|
||||
|
@ -8,7 +9,7 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "ujson";
|
||||
version = "3.0.0";
|
||||
disabled = isPyPy;
|
||||
disabled = isPyPy || (!isPy3k);
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
|
Loading…
Reference in a new issue