python2.pkgs.sipsimple: 3.1.1 -> 3.4.2

This commit is contained in:
Robin Gloster 2019-08-20 22:14:55 +02:00
parent 254292858c
commit ea5b86c3f1
No known key found for this signature in database
GPG Key ID: D5C458DF6DD97EDF

View File

@ -1,6 +1,6 @@
{ stdenv { lib
, buildPythonPackage , buildPythonPackage
, fetchdarcs , fetchFromGitHub
, isPy3k , isPy3k
, pkgs , pkgs
, cython , cython
@ -14,13 +14,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "sipsimple"; pname = "sipsimple";
version = "3.1.1"; version = "3.4.2";
disabled = isPy3k; disabled = isPy3k;
src = fetchdarcs { src = fetchFromGitHub {
url = http://devel.ag-projects.com/repositories/python-sipsimple; owner = "AGProjects";
repo = "python-sipsimple";
rev = "release-${version}"; rev = "release-${version}";
sha256 = "0jdilm11f5aahxrzrkxrfx9sgjgkbla1r0wayc5dzd2wmjrdjyrg"; sha256 = "094xf343d6zjhg9jwbm3dr74zq264cyqnn22byvm2m88lnagmhmr";
}; };
preConfigure = '' preConfigure = ''
@ -32,7 +33,7 @@ buildPythonPackage rec {
buildInputs = with pkgs; [ alsaLib ffmpeg libv4l sqlite libvpx ]; buildInputs = with pkgs; [ alsaLib ffmpeg libv4l sqlite libvpx ];
propagatedBuildInputs = [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ]; propagatedBuildInputs = [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ];
meta = with stdenv.lib; { meta = with lib; {
description = "SIP SIMPLE implementation for Python"; description = "SIP SIMPLE implementation for Python";
homepage = http://sipsimpleclient.org/; homepage = http://sipsimpleclient.org/;
license = licenses.gpl3; license = licenses.gpl3;