pythonPackages.scapy: move to python-modules/
This commit is contained in:
20
pkgs/development/python-modules/scapy/default.nix
Normal file
20
pkgs/development/python-modules/scapy/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, isPy3k, isPyPy }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "scapy-2.2.0";
|
||||
|
||||
disabled = isPy3k || isPyPy;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.secdev.org/projects/scapy/files/${name}.tar.gz";
|
||||
sha256 = "1bqmp0xglkndrqgmybpwmzkv462mir8qlkfwsxwbvvzh9li3ndn5";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Powerful interactive network packet manipulation program";
|
||||
homepage = http://www.secdev.org/projects/scapy/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user