about summary refs log tree commit diff
path: root/pkgs/development/python-modules/trollius/default.nix
blob: 7b61633a7fc7826b80c4ded2dc5416aa1c78804e (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27, isPy26, isPyPy, mock, futures  }:
buildPythonPackage rec {
  pname = "trollius";
  version = "1.0.4";
  name  = "${pname}-${version}";

  disabled = isPy26;

  src = fetchPypi {
    inherit pname version;
    sha256 = "0xny8y12x3wrflmyn6xi8a7n3m3ac80fgmgzphx5jbbaxkjcm148";
  };

  buildInputs = [ mock ];

  propagatedBuildInputs = lib.optionals (isPy27 || isPyPy) [ futures ];

  patches = [
    ./tests.patch
  ];

  # Some of the tests fail on darwin with `error: AF_UNIX path too long'
  # because of the *long* path names for sockets
  patchPhase = lib.optionalString stdenv.isDarwin ''
      sed -i -e "s|test_create_ssl_unix_connection|skip_test_create_ssl_unix_connection|g" tests/test_events.py
      sed -i -e "s|test_create_unix_connection|skip_test_create_unix_connection|g" tests/test_events.py
      sed -i -e "s|test_create_unix_server_existing_path_nonsock|skip_test_create_unix_server_existing_path_nonsock|g" tests/test_unix_events.py
      sed -i -e "s|test_create_unix_server_existing_path_sock|skip_test_create_unix_server_existing_path_sock|g" tests/test_unix_events.py
      sed -i -e "s|test_create_unix_server_ssl_verified|skip_test_create_unix_server_ssl_verified|g" tests/test_events.py
      sed -i -e "s|test_create_unix_server_ssl_verify_failed|skip_test_create_unix_server_ssl_verify_failed|g" tests/test_events.py
      sed -i -e "s|test_create_unix_server_ssl|skip_test_create_unix_server_ssl|g" tests/test_events.py
      sed -i -e "s|test_create_unix_server|skip_test_create_unix_server|g" tests/test_events.py
      sed -i -e "s|test_open_unix_connection_error|skip_test_open_unix_connection_error|g" tests/test_streams.py
      sed -i -e "s|test_open_unix_connection_no_loop_ssl|skip_test_open_unix_connection_no_loop_ssl|g" tests/test_streams.py
      sed -i -e "s|test_open_unix_connection|skip_test_open_unix_connection|g" tests/test_streams.py
      sed -i -e "s|test_pause_reading|skip_test_pause_reading|g" tests/test_subprocess.py
      sed -i -e "s|test_read_pty_output|skip_test_read_pty_output|g" tests/test_events.py
      sed -i -e "s|test_start_unix_server|skip_test_start_unix_server|g" tests/test_streams.py
      sed -i -e "s|test_unix_sock_client_ops|skip_test_unix_sock_client_ops|g" tests/test_events.py
      sed -i -e "s|test_write_pty|skip_test_write_pty|g" tests/test_events.py
  '';

  meta = with stdenv.lib; {
    description = "Port of the Tulip project (asyncio module, PEP 3156) on Python 2";
    homepage = "https://bitbucket.org/enovance/trollius";
    license = licenses.asl20;
    maintainers = with maintainers; [ garbas ];
  };
}