nixpkgs/pkgs/development/python-modules/twisted/default.nix
aszlig c15e6fd3fd
python/twisted: Fix fetching source
In ced21f5e1a, fetchurl has changed into
fetchPypi, but the upstream tarball is actually a tar.bz2 archive but by
default fetchPypi uses "tar.gz" as its extension.

The sha256 however is still the same.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @FRidh
2018-06-29 23:23:32 +02:00

58 lines
1.6 KiB
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, python
, zope_interface
, incremental
, automat
, constantly
, hyperlink
, pyopenssl
, service-identity
, idna
}:
buildPythonPackage rec {
pname = "Twisted";
version = "18.4.0";
src = fetchPypi {
inherit pname version;
extension = "tar.bz2";
sha256 = "a4cc164a781859c74de47f17f0e85f4bce8a3321a9d0892c015c8f80c4158ad9";
};
propagatedBuildInputs = [ zope_interface incremental automat constantly hyperlink ];
passthru.extras.tls = [ pyopenssl service-identity idna ];
# 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; {
homepage = https://twistedmatrix.com/;
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 = [ ];
};
}