2021-03-26 14:29:14 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonApplication
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "pwncat";
|
2021-11-03 19:54:02 +00:00
|
|
|
version = "0.1.2";
|
2021-03-26 14:29:14 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-03 19:54:02 +00:00
|
|
|
sha256 = "1230fdn5mx3wwr3a3nn6z2vwh973n248m11hnx9y3fjq7bgpky67";
|
2021-03-26 14:29:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Tests requires to start containers
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2021-04-05 16:28:46 +01:00
|
|
|
description = "TCP/UDP communication suite";
|
2021-03-26 14:29:14 +00:00
|
|
|
homepage = "https://pwncat.org/";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|