Files
nixpkgs/pkgs/development/python-modules/pycairo/default.nix
T

36 lines
951 B
Nix
Raw Normal View History

2017-11-25 16:41:57 +01:00
{ lib, fetchFromGitHub, python, buildPythonPackage, pytest, pkgconfig, cairo, xlibsWrapper, isPyPy }:
2007-05-13 20:49:13 +00:00
2017-11-25 16:41:57 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "pycairo";
2018-04-07 01:53:34 +02:00
version = "1.16.3";
2017-04-01 09:50:06 +07:00
2017-11-25 16:41:57 +01:00
disabled = isPyPy;
2007-05-13 20:49:13 +00:00
2017-11-25 16:41:57 +01:00
src = fetchFromGitHub {
owner = "pygobject";
repo = "pycairo";
rev = "v${version}";
2018-04-07 01:53:34 +02:00
sha256 = "0clk6wrfls3fa1xrn844762qfaw6gs4ivwkrfysidbzmlbxhpngl";
2017-11-25 16:41:57 +01:00
};
2018-04-07 01:53:34 +02: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 16:41:57 +01:00
'';
2016-04-26 23:28:39 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python cairo xlibsWrapper ];
2017-11-25 16:41:57 +01:00
checkInputs = [ pytest ];
2015-11-08 08:21:58 +01:00
2016-08-31 11:01:16 +02:00
meta.platforms = lib.platforms.linux ++ lib.platforms.darwin;
2007-05-13 20:49:13 +00:00
}