nixpkgs/pkgs/tools/security/pwncat/default.nix

25 lines
509 B
Nix
Raw Normal View History

2021-03-26 14:29:14 +00:00
{ lib
, buildPythonApplication
, fetchPypi
}:
buildPythonApplication rec {
pname = "pwncat";
version = "0.1.1";
2021-03-26 14:29:14 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "62e625e9061f037cfca7b7455a4f7db4213c1d1302e73d4c475c63f924f1805f";
2021-03-26 14:29:14 +00:00
};
# Tests requires to start containers
doCheck = false;
meta = with lib; {
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 ];
};
}