python3Packages.pkuseg: disable for python39

This commit is contained in:
Jonathan Ringer
2021-12-07 22:58:57 -08:00
parent 1267e41716
commit 2afc6ef050
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, isPy3k
, pythonAtLeast
, cython
, numpy
}:
@@ -10,7 +11,7 @@ buildPythonPackage rec {
pname = "pkuseg";
version = "0.0.25";
disabled = !isPy3k;
disabled = !isPy3k || pythonAtLeast "3.9";
src = fetchPypi {
inherit pname version;