forked from mirrors/nixpkgs
pycairo: disable on py35
This commit is contained in:
parent
b2b568d782
commit
792fcd9f70
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, xlibsWrapper, isPyPy }:
|
{ stdenv, fetchurl, fetchpatch, python, pkgconfig, cairo, xlibsWrapper, isPyPy, isPy35 }:
|
||||||
|
|
||||||
if isPyPy then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec {
|
if (isPyPy || isPy35) then throw "pycairo not supported for interpreter ${python.executable}" else stdenv.mkDerivation rec {
|
||||||
version = "1.10.0";
|
version = "1.10.0";
|
||||||
name = "pycairo-${version}";
|
name = "pycairo-${version}";
|
||||||
src = if python.is_py3k or false
|
src = if python.is_py3k or false
|
||||||
|
@ -36,4 +36,6 @@ if isPyPy then throw "pycairo not supported for interpreter ${python.executable}
|
||||||
'';
|
'';
|
||||||
buildPhase = "${python.executable} waf";
|
buildPhase = "${python.executable} waf";
|
||||||
installPhase = "${python.executable} waf install";
|
installPhase = "${python.executable} waf install";
|
||||||
|
|
||||||
|
meta.platforms = stdenv.lib.platforms.linux;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue