2017-11-25 07:41:57 -08:00
|
|
|
{ lib, fetchFromGitHub, python, buildPythonPackage, pytest, pkgconfig, cairo, xlibsWrapper, isPyPy }:
|
2007-05-13 13:49:13 -07:00
|
|
|
|
2017-11-25 07:41:57 -08:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "pycairo";
|
2018-04-06 16:53:34 -07:00
|
|
|
version = "1.16.3";
|
2017-03-31 19:50:06 -07:00
|
|
|
|
2017-11-25 07:41:57 -08:00
|
|
|
disabled = isPyPy;
|
2007-05-13 13:49:13 -07:00
|
|
|
|
2017-11-25 07:41:57 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pygobject";
|
|
|
|
repo = "pycairo";
|
|
|
|
rev = "v${version}";
|
2018-04-06 16:53:34 -07:00
|
|
|
sha256 = "0clk6wrfls3fa1xrn844762qfaw6gs4ivwkrfysidbzmlbxhpngl";
|
2017-11-25 07:41:57 -08:00
|
|
|
};
|
|
|
|
|
2018-04-06 16:53:34 -07:00
|
|
|
# We need to create the pkgconfig file but it cannot be installed as a wheel since wheels
|
|
|
|
# are supposed to be relocatable and do not support --prefix option
|
|
|
|
buildPhase = ''
|
|
|
|
${python.interpreter} setup.py build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
${python.interpreter} setup.py install --skip-build --prefix="$out" --optimize=1
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} setup.py test
|
2017-11-25 07:41:57 -08:00
|
|
|
'';
|
2016-04-26 14:28:39 -07:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ python cairo xlibsWrapper ];
|
2017-11-25 07:41:57 -08:00
|
|
|
checkInputs = [ pytest ];
|
2015-11-07 23:21:58 -08:00
|
|
|
|
2016-08-31 02:01:16 -07:00
|
|
|
meta.platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
2007-05-13 13:49:13 -07:00
|
|
|
}
|