summary refs log tree commit diff
path: root/pkgs/development/python-modules/msrplib/default.nix
blob: ffb87ff48ee0d9e849dc640c39707d1e878e4c04 (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
{ stdenv
, buildPythonPackage
, fetchdarcs
, eventlib
, application
, gnutls
}:

buildPythonPackage rec {
  pname = "python-msrplib";
  version = "0.19.2";

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

  propagatedBuildInputs = [ eventlib application gnutls ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/AGProjects/python-msrplib";
    description = "Client library for MSRP protocol and its relay extension (RFC 4975 and RFC4976)";
    license = licenses.lgpl3;
  };

}