9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, isPy3k
|
|
, pkgs
|
|
, cython
|
|
, dnspython
|
|
, dateutil
|
|
, xcaplib
|
|
, msrplib
|
|
, lxml
|
|
, python-otr
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sipsimple";
|
|
version = "3.4.2";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AGProjects";
|
|
repo = "python-sipsimple";
|
|
rev = "release-${version}";
|
|
sha256 = "094xf343d6zjhg9jwbm3dr74zq264cyqnn22byvm2m88lnagmhmr";
|
|
};
|
|
|
|
preConfigure = ''
|
|
# TODO: Executable bits are set by upstream with the next release
|
|
# see AGProjects/python-sipsimple/commit/a36d66cf758afb43c59f7ac48b193c4148eb1848
|
|
chmod +x ./deps/pjsip/configure ./deps/pjsip/aconfigure
|
|
|
|
export LD=$CC
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgs.pkg-config ];
|
|
buildInputs = with pkgs; [ alsaLib ffmpeg_3 libv4l sqlite libvpx ];
|
|
propagatedBuildInputs = [ cython pkgs.openssl dnspython dateutil xcaplib msrplib lxml python-otr ];
|
|
|
|
meta = with lib; {
|
|
description = "SIP SIMPLE implementation for Python";
|
|
homepage = "https://sipsimpleclient.org/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
|
|
}
|