3
0
Fork 0
forked from mirrors/nixpkgs

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 , pythonOlder
, isPyPy , isPyPy
, enum34 , enum34
, isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "llvmlite"; pname = "llvmlite";
version = "0.32.1"; version = "0.32.1";
disabled = isPyPy; disabled = isPyPy || !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;