2017-03-21 12:01:17 +00:00
|
|
|
{ lib, fetchurl, buildPythonPackage, python, isPyPy }:
|
2009-02-25 16:05:13 +00:00
|
|
|
|
2017-03-21 12:01:17 +00:00
|
|
|
if isPyPy then throw "sip not supported for interpreter ${python.executable}" else buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "sip";
|
2017-12-17 21:15:40 +00:00
|
|
|
version = "4.19.6";
|
2017-05-27 10:25:35 +01:00
|
|
|
name = "${pname}-${version}";
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2014-01-08 08:06:08 +00:00
|
|
|
|
2009-02-25 16:05:13 +00:00
|
|
|
src = fetchurl {
|
2014-01-08 08:06:08 +00:00
|
|
|
url = "mirror://sourceforge/pyqt/sip/${name}/${name}.tar.gz";
|
2017-12-17 21:15:40 +00:00
|
|
|
sha256 = "0nlj0zbvmzliyhhspqwf2bjvcnpq4agx4s47php7ishv32p2gnlx";
|
2009-02-25 16:05:13 +00:00
|
|
|
};
|
2013-07-04 06:07:02 +01:00
|
|
|
|
2016-08-17 17:35:29 +01:00
|
|
|
configurePhase = ''
|
2014-01-08 08:06:08 +00:00
|
|
|
${python.executable} ./configure.py \
|
|
|
|
-d $out/lib/${python.libPrefix}/site-packages \
|
2013-07-04 06:07:02 +01:00
|
|
|
-b $out/bin -e $out/include
|
|
|
|
'';
|
2014-01-08 08:06:08 +00:00
|
|
|
|
2016-08-31 10:01:16 +01:00
|
|
|
meta = with lib; {
|
2009-09-10 18:00:30 +01:00
|
|
|
description = "Creates C++ bindings for Python modules";
|
2014-01-08 08:06:08 +00:00
|
|
|
homepage = "http://www.riverbankcomputing.co.uk/";
|
2013-07-14 00:08:03 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ lovek323 sander ];
|
2013-07-04 06:07:02 +01:00
|
|
|
platforms = platforms.all;
|
2009-09-10 18:00:30 +01:00
|
|
|
};
|
2009-02-25 16:05:13 +00:00
|
|
|
}
|