about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/pwncat/default.nix
blob: 398132c4cee7bcd1c2529d512ff0684cc929f6c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib
, buildPythonApplication
, fetchPypi
}:

buildPythonApplication rec {
  pname = "pwncat";
  version = "0.1.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1230fdn5mx3wwr3a3nn6z2vwh973n248m11hnx9y3fjq7bgpky67";
  };

  # Tests requires to start containers
  doCheck = false;

  meta = with lib; {
    description = "TCP/UDP communication suite";
    homepage = "https://pwncat.org/";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}