pythonPackages.pycairo: 1.10.0 → 1.15.4
This commit is contained in:
parent
9c048f4fb6
commit
a63603685a
@ -1,50 +1,28 @@
|
|||||||
{ lib, fetchurl, fetchpatch, python, buildPythonPackage, pkgconfig, cairo, xlibsWrapper, isPyPy, isPy35, isPy36, isPy3k }:
|
{ lib, fetchFromGitHub, python, buildPythonPackage, pytest, pkgconfig, cairo, xlibsWrapper, isPyPy }:
|
||||||
|
|
||||||
if (isPyPy) then throw "pycairo not supported for interpreter ${python.executable}" else let
|
buildPythonPackage rec {
|
||||||
|
|
||||||
patch_waf = fetchpatch {
|
|
||||||
url = http://www.linuxfromscratch.org/patches/blfs/8.0/pycairo-1.10.0-waf_python_3_4-1.patch;
|
|
||||||
sha256 = "0xfl1i9dips2nykyg91f5h5r3xpk2hp1js1gq5z0hwjr0in55id4";
|
|
||||||
};
|
|
||||||
patch_waf-py3_5 = ./waf-py3_5.patch;
|
|
||||||
|
|
||||||
in buildPythonPackage rec {
|
|
||||||
pname = "pycairo";
|
pname = "pycairo";
|
||||||
version = "1.10.0";
|
version = "1.15.4";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
format = "other";
|
|
||||||
|
|
||||||
src = if isPy3k
|
disabled = isPyPy;
|
||||||
then fetchurl {
|
|
||||||
url = "http://cairographics.org/releases/pycairo-${version}.tar.bz2";
|
|
||||||
sha256 = "1gjkf8x6hyx1skq3hhwcbvwifxvrf9qxis5vx8x5igmmgs70g94s";
|
|
||||||
}
|
|
||||||
else fetchurl {
|
|
||||||
url = "http://cairographics.org/releases/py2cairo-${version}.tar.bz2";
|
|
||||||
sha256 = "0cblk919wh6w0pgb45zf48xwxykfif16qk264yga7h9fdkq3j16k";
|
|
||||||
};
|
|
||||||
|
|
||||||
patches = [
|
src = fetchFromGitHub {
|
||||||
(fetchpatch {
|
owner = "pygobject";
|
||||||
url = http://www.linuxfromscratch.org/patches/blfs/8.0/pycairo-1.10.0-waf_unpack-1.patch;
|
repo = "pycairo";
|
||||||
sha256 = "1bmrhq2nmhx4l5glvyi59r0hc7w5m56kz41frx7v3dcp8f91p7xd";
|
rev = "v${version}";
|
||||||
})
|
sha256 = "02vzmfxx8nl6dbwzc911wcj7hqspgqz6v9xmq6579vwfla0vaglv";
|
||||||
];
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# we are unable to pass --prefix to bdist_wheel
|
||||||
|
# see https://github.com/NixOS/nixpkgs/pull/32034#discussion_r153285955
|
||||||
|
substituteInPlace setup.py --replace '"prefix": self.install_base' "'prefix': '$out'"
|
||||||
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ python cairo xlibsWrapper ];
|
buildInputs = [ python cairo xlibsWrapper ];
|
||||||
|
checkInputs = [ pytest ];
|
||||||
configurePhase = ''
|
|
||||||
(
|
|
||||||
cd $(${python.executable} waf unpack)
|
|
||||||
patch -p1 < ${patch_waf}
|
|
||||||
${lib.optionalString (isPy35 || isPy36) "patch -p1 < ${patch_waf-py3_5}"}
|
|
||||||
)
|
|
||||||
|
|
||||||
${python.executable} waf configure --prefix=$out
|
|
||||||
'';
|
|
||||||
buildPhase = "${python.executable} waf";
|
|
||||||
installPhase = "${python.executable} waf install";
|
|
||||||
|
|
||||||
meta.platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
meta.platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||||
}
|
}
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
--- a/waflib/Build.py
|
|
||||||
+++ b/waflib/Build.py
|
|
||||||
@@ -151,6 +151,7 @@ class BuildContext(Context.Context):
|
|
||||||
f.close()
|
|
||||||
self.init_dirs()
|
|
||||||
def store(self):
|
|
||||||
+ return
|
|
||||||
data={}
|
|
||||||
for x in SAVED_ATTRS:
|
|
||||||
data[x]=getattr(self,x)
|
|
Loading…
x
Reference in New Issue
Block a user