about summary refs log tree commit diff
path: root/pkgs/development/python-modules/uvloop/default.nix
blob: 9c3dae74a79e5a42030bb1266c663fb427335634 (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
{ lib
, buildPythonPackage
, fetchPypi
, pyopenssl
, libuv
, psutil
, isPy27
}:

buildPythonPackage rec {
  pname = "uvloop";
  version = "0.12.2";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "c48692bf4587ce281d641087658eca275a5ad3b63c78297bbded96570ae9ce8f";
  };

  buildInputs = [ libuv ];

  checkInputs = [ pyopenssl psutil ];

  meta = with lib; {
    description = "Fast implementation of asyncio event loop on top of libuv";
    homepage = http://github.com/MagicStack/uvloop;
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}