2019-08-20 22:14:55 +02:00
|
|
|
{ lib
|
2018-10-27 16:09:59 +02:00
|
|
|
, buildPythonPackage
|
2019-08-20 22:14:55 +02:00
|
|
|
, fetchFromGitHub
|
2018-10-27 16:09:59 +02:00
|
|
|
, isPy3k
|
|
|
|
, pkgs
|
|
|
|
, cython
|
|
|
|
, dnspython
|
|
|
|
, dateutil
|
|
|
|
, xcaplib
|
|
|
|
, msrplib
|
|
|
|
, lxml
|
|
|
|
, python-otr
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sipsimple";
|
2019-08-20 22:14:55 +02:00
|
|
|
version = "3.4.2";
|
2018-10-27 16:09:59 +02:00
|
|
|
disabled = isPy3k;
|
|
|
|
|
2019-08-20 22:14:55 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AGProjects";
|
|
|
|
repo = "python-sipsimple";
|
2018-10-27 16:09:59 +02:00
|
|
|
rev = "release-${version}";
|
2019-08-20 22:14:55 +02:00
|
|
|
sha256 = "094xf343d6zjhg9jwbm3dr74zq264cyqnn22byvm2m88lnagmhmr";
|
2018-10-27 16:09:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
2020-02-08 20:04:11 +01:00
|
|
|
# TODO: Executable bits are set by upstream with the next release
|
|
|
|
# see AGProjects/python-sipsimple/commit/a36d66cf758afb43c59f7ac48b193c4148eb1848
|
2018-10-27 16:09:59 +02:00
|
|
|
chmod +x ./deps/pjsip/configure ./deps/pjsip/aconfigure
|
2020-02-08 20:04:11 +01:00
|
|
|
|
2019-01-04 20:33:51 +01:00
|
|
|
export LD=$CC
|
2018-10-27 16:09:59 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgs.pkgconfig ];
|
|
|
|
buildInputs = with pkgs; [ alsaLib ffmpeg libv4l sqlite libvpx ];
|
|
|
|
propagatedBuildInputs = [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ];
|
|
|
|
|
2019-08-20 22:14:55 +02:00
|
|
|
meta = with lib; {
|
2018-10-27 16:09:59 +02:00
|
|
|
description = "SIP SIMPLE implementation for Python";
|
2020-01-22 11:26:22 +01:00
|
|
|
homepage = https://sipsimpleclient.org/;
|
2018-10-27 16:09:59 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|