forked from mirrors/nixpkgs
python2Packages.llvmlite: disable
no longer Python 2 compatible.
This commit is contained in:
parent
a2c93555e7
commit
9cd3173574
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue