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