ujson: version 3.0.0 requires python 3.5+

This commit is contained in:
Dmitry Kalinkin 2020-07-14 17:48:58 -04:00
parent f0cfc7eba9
commit 25d3591fd1
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

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