python2Packages.llvmlite: disable

no longer Python 2 compatible.
This commit is contained in:
Frederik Rietdijk 2020-05-10 09:29:46 +02:00
parent a2c93555e7
commit 9cd3173574

View file

@ -6,13 +6,14 @@
, pythonOlder
, isPyPy
, enum34
, isPy3k
}:
buildPythonPackage rec {
pname = "llvmlite";
version = "0.32.1";
disabled = isPyPy;
disabled = isPyPy || !isPy3k;
src = fetchPypi {
inherit pname version;