nixpkgs/pkgs/development/python-modules/trollius/default.nix

53 lines
2.7 KiB
Nix
Raw Normal View History

2018-09-03 03:40:36 +00:00
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy3k, mock, unittest2, six, futures }:
2017-09-15 23:16:11 +00:00
buildPythonPackage rec {
pname = "trollius";
2018-09-03 03:40:36 +00:00
version = "2.2";
2017-09-15 23:16:11 +00:00
src = fetchPypi {
inherit pname version;
2018-09-03 03:40:36 +00:00
sha256 = "093978388qvw5hyscbbj062dbdc2761xs9yzrq26mh63g689lnxk";
2017-09-15 23:16:11 +00:00
};
2018-09-03 03:40:36 +00:00
checkInputs = [ mock ] ++ lib.optional (!isPy3k) unittest2;
2017-09-15 23:16:11 +00:00
2018-09-03 03:40:36 +00:00
propagatedBuildInputs = [ six ] ++ lib.optional (!isPy3k) futures;
2017-09-15 23:16:11 +00:00
patches = [
./tests.patch
];
disabled = isPy3k;
2018-09-03 03:40:36 +00:00
postPatch = ''
# Overrides PYTHONPATH causing dependencies not to be found
sed -i -e "s|test_env_var_debug|skip_test_env_var_debug|g" tests/test_tasks.py
'' + lib.optionalString stdenv.isDarwin ''
# Some of the tests fail on darwin with `error: AF_UNIX path too long'
# because of the *long* path names for sockets
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
2017-09-15 23:16:11 +00:00
'';
meta = with stdenv.lib; {
2018-09-03 03:40:36 +00:00
description = "Port of the asyncio project to Python 2.7";
homepage = https://github.com/vstinner/trollius;
2017-09-15 23:16:11 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ ];
2017-09-15 23:16:11 +00:00
};
}