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

buildPythonPackage rec {
  pname = "python-eventlib";
  version = "0.2.2";
  # Judging from SyntaxError
  disabled = isPy3k;

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

  propagatedBuildInputs = [ greenlet ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "Eventlib bindings for python";
    homepage    = "http://ag-projects.com/";
    license     = licenses.lgpl2;
  };

}