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
|
, 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;
|
||||||
|
|
Loading…
Reference in a new issue