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

57 lines
1.8 KiB
Nix
Raw Normal View History

{ buildPythonPackage, fetchFromGitHub, lib, isPyPy, isPy3k, pythonOlder
, pycrypto, ecdsa # TODO
2018-03-27 16:26:03 +00:00
, enum34, mock
, withOptionalDeps ? true, tcpdump, ipython
, withCryptography ? true, cryptography
, withVoipSupport ? true, sox
, withPlottingSupport ? true, matplotlib
, withGraphicsSupport ? false, pyx, texlive, graphviz, imagemagick
, withManufDb ? false, wireshark
# 2D/3D graphics and graphs TODO: VPython
# TODO: nmap, numpy
2018-02-15 21:40:01 +00:00
}:
buildPythonPackage rec {
pname = "scapy";
2019-01-10 13:47:02 +00:00
version = "2.4.2";
2018-03-27 16:26:03 +00:00
disabled = isPyPy;
2018-02-15 21:40:01 +00:00
src = fetchFromGitHub {
owner = "secdev";
repo = "scapy";
rev = "v${version}";
2019-01-10 13:47:02 +00:00
sha256 = "03xzjklvc6y4d87k0rqpx5h112ld5nvgfldrbd8c4mx6f9mmd11n";
};
2018-03-27 16:26:03 +00:00
# TODO: Temporary workaround
2019-01-10 13:47:02 +00:00
patches = [ ./fix-version.patch ];
2018-02-15 21:40:01 +00:00
2019-01-10 13:47:02 +00:00
postPatch = ''
sed -i "s/NIXPKGS_SCAPY_VERSION/${version}/" \
setup.py scapy/__init__.py
'' + lib.optionalString withManufDb ''
substituteInPlace scapy/data.py --replace "/opt/wireshark" "${wireshark}"
'';
propagatedBuildInputs = [ pycrypto ecdsa ]
++ lib.optional withOptionalDeps [ tcpdump ipython ]
++ lib.optional withCryptography [ cryptography ]
++ lib.optional withVoipSupport [ sox ]
++ lib.optional withPlottingSupport [ matplotlib ]
++ lib.optional withGraphicsSupport [ pyx texlive.combined.scheme-minimal graphviz imagemagick ]
2018-03-27 16:26:03 +00:00
++ lib.optional (isPy3k && pythonOlder "3.4") [ enum34 ]
++ lib.optional doCheck [ mock ];
# Tests fail with Python 3.6 (seems to be an upstream bug, I'll investigate)
doCheck = if isPy3k then false else true;
2018-02-15 21:40:01 +00:00
meta = with lib; {
description = "Powerful interactive network packet manipulation program";
2018-03-27 16:26:03 +00:00
homepage = https://scapy.net/;
license = licenses.gpl2;
platforms = platforms.linux;
2018-02-15 21:40:01 +00:00
maintainers = with maintainers; [ primeos bjornfor ];
};
}