about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sipsimple/default.nix
blob: 1df36dcf5d0a6681ae2505533965de292e720b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ stdenv
, buildPythonPackage
, fetchdarcs
, isPy3k
, pkgs
, cython
, dnspython
, dateutil
, xcaplib
, msrplib
, lxml
, python-otr
}:

buildPythonPackage rec {
  pname = "sipsimple";
  version = "3.1.1";
  disabled = isPy3k;

  src = fetchdarcs {
    url = http://devel.ag-projects.com/repositories/python-sipsimple;
    rev = "release-${version}";
    sha256 = "0jdilm11f5aahxrzrkxrfx9sgjgkbla1r0wayc5dzd2wmjrdjyrg";
  };

  preConfigure = ''
    chmod +x ./deps/pjsip/configure ./deps/pjsip/aconfigure
  '';

  nativeBuildInputs = [ pkgs.pkgconfig ];
  buildInputs = with pkgs; [ alsaLib ffmpeg libv4l sqlite libvpx ];
  propagatedBuildInputs = [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ];

  meta = with stdenv.lib; {
    description = "SIP SIMPLE implementation for Python";
    homepage = http://sipsimpleclient.org/;
    license = licenses.gpl3;
    maintainers = with maintainers; [ pSub ];
  };

}