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

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;