2017-09-05 10:16:41 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
2018-06-23 14:27:58 +01:00
|
|
|
, fetchPypi
|
2017-09-05 10:16:41 +01:00
|
|
|
, python
|
|
|
|
, zope_interface
|
|
|
|
, incremental
|
|
|
|
, automat
|
|
|
|
, constantly
|
|
|
|
, hyperlink
|
|
|
|
, pyopenssl
|
|
|
|
, service-identity
|
|
|
|
, idna
|
2017-04-26 13:45:04 +01:00
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "Twisted";
|
2018-07-22 11:23:20 +01:00
|
|
|
version = "18.7.0";
|
2017-04-26 13:45:04 +01:00
|
|
|
|
2018-06-23 14:27:58 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-29 22:20:08 +01:00
|
|
|
extension = "tar.bz2";
|
2018-07-22 11:23:20 +01:00
|
|
|
sha256 = "95ae985716e8107816d8d0df249d558dbaabb677987cc2ace45272c166b267e4";
|
2017-04-26 13:45:04 +01:00
|
|
|
};
|
|
|
|
|
2017-08-15 09:02:16 +01:00
|
|
|
propagatedBuildInputs = [ zope_interface incremental automat constantly hyperlink ];
|
2017-04-26 13:45:04 +01:00
|
|
|
|
2017-09-05 10:16:41 +01:00
|
|
|
passthru.extras.tls = [ pyopenssl service-identity idna ];
|
|
|
|
|
2017-04-26 13:45:04 +01:00
|
|
|
# Patch t.p._inotify to point to libc. Without this,
|
|
|
|
# twisted.python.runtime.platform.supportsINotify() == False
|
|
|
|
patchPhase = stdenv.lib.optionalString stdenv.isLinux ''
|
|
|
|
substituteInPlace src/twisted/python/_inotify.py --replace \
|
|
|
|
"ctypes.util.find_library('c')" "'${stdenv.glibc.out}/lib/libc.so.6'"
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Generate Twisted's plug-in cache. Twisted users must do it as well. See
|
|
|
|
# http://twistedmatrix.com/documents/current/core/howto/plugin.html#auto3
|
|
|
|
# and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477103 for
|
|
|
|
# details.
|
|
|
|
postInstall = "$out/bin/twistd --help > /dev/null";
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} -m unittest discover -s twisted/test
|
|
|
|
'';
|
|
|
|
# Tests require network
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-06-27 21:12:57 +01:00
|
|
|
homepage = https://twistedmatrix.com/;
|
2017-04-26 13:45:04 +01:00
|
|
|
description = "Twisted, an event-driven networking engine written in Python";
|
|
|
|
longDescription = ''
|
|
|
|
Twisted is an event-driven networking engine written in Python
|
|
|
|
and licensed under the MIT license.
|
|
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ ];
|
|
|
|
};
|
|
|
|
}
|