Unverified Commit 3a549e8f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

netexec: 1.1.0-unstable-2024-01-15 -> 1.3.0 (#371296)

parents 74c28082 ddc4da2c
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonAtLeast,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pynfsclient";
  version = "0.1.5";
  pyproject = true;

  disabled = pythonAtLeast "3.13";

  src = fetchPypi {
    pname = "pyNfsClient";
    inherit version;
    hash = "sha256-xgZL08NlMCpSkALQwklh7Xq16bK2Sm2hAynbrIWsgaU=";
  };

  postPatch = ''
    # HISTORY.md is missing
    substituteInPlace setup.py \
      --replace-fail "HISTORY.md" "README.rst"
  '';

  build-system = [ setuptools ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "pyNfsClient" ];

  meta = {
    description = "Pure python NFS client";
    homepage = "https://pypi.org/project/pyNfsClient/";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+24 −18
Original line number Diff line number Diff line
@@ -27,32 +27,35 @@ let
in
python.pkgs.buildPythonApplication rec {
  pname = "netexec";
  version = "1.1.0-unstable-2024-01-15";
  version = "1.3.0";
  pyproject = true;
  pythonRelaxDeps = true;
  pythonRemoveDeps = [
    # Fail to detect dev version requirement
    "neo4j"
  ];

  src = fetchFromGitHub {
    owner = "Pennyw0rth";
    repo = "NetExec";
    rev = "9df72e2f68b914dfdbd75b095dd8f577e992615f";
    hash = "sha256-oQHtTE5hdlxHX4uc412VfNUrN0UHVbwI0Mm9kmJpNW4=";
    tag = "v${version}";
    hash = "sha256-Pub7PAw6CTN4c/PHTPE9KcnDR2a6hSza1ODp3EWMOH0=";
  };

  pythonRelaxDeps = true;

  pythonRemoveDeps = [
    # Fail to detect dev version requirement
    "neo4j"
  ];

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace '{ git = "https://github.com/Pennyw0rth/impacket.git", branch = "gkdi" }' '"*"' \
      --replace '{ git = "https://github.com/Pennyw0rth/oscrypto" }' '"*"'
      --replace-fail '{ git = "https://github.com/fortra/impacket.git" }' '"*"' \
      --replace-fail '{ git = "https://github.com/Pennyw0rth/NfsClient" }' '"*"'
  '';

  nativeBuildInputs = with python.pkgs; [
  build-system = with python.pkgs; [
    poetry-core
    poetry-dynamic-versioning
  ];

  propagatedBuildInputs = with python.pkgs; [
  dependencies = with python.pkgs; [
    aardwolf
    aioconsole
    aiosqlite
@@ -67,13 +70,15 @@ python.pkgs.buildPythonApplication rec {
    masky
    minikerberos
    msgpack
    msldap
    neo4j
    oscrypto
    paramiko
    pyasn1-modules
    pylnk3
    pynfsclient
    pypsrp
    pypykatz
    python-dateutil
    python-libnmap
    pywerview
    requests
@@ -84,9 +89,10 @@ python.pkgs.buildPythonApplication rec {
    xmltodict
  ];

  nativeCheckInputs = with python.pkgs; [
    pytestCheckHook
  ];
  nativeCheckInputs = with python.pkgs; [ pytestCheckHook ];

  # Tests no longer works out-of-box with 1.3.0
  doCheck = false;

  preCheck = ''
    export HOME=$(mktemp -d)
@@ -96,9 +102,9 @@ python.pkgs.buildPythonApplication rec {
    description = "Network service exploitation tool (maintained fork of CrackMapExec)";
    homepage = "https://github.com/Pennyw0rth/NetExec";
    changelog = "https://github.com/Pennyw0rth/NetExec/releases/tag/v${version}";
    license = with licenses; [ bsd2 ];
    mainProgram = "nxc";
    license = licenses.bsd2;
    maintainers = with maintainers; [ vncsb ];
    mainProgram = "nxc";
    # FIXME: failing fixupPhase:
    # $ Rewriting #!/nix/store/<hash>-python3-3.11.7/bin/python3.11 to #!/nix/store/<hash>-python3-3.11.7
    # $ /nix/store/<hash>-wrap-python-hook/nix-support/setup-hook: line 65: 47758 Killed: 9               sed -i "$f" -e "1 s^#!/nix/store/<hash>-python3-3.11.7^#!/nix/store/<hash>-python3-3.11.7^"
+2 −0
Original line number Diff line number Diff line
@@ -10699,6 +10699,8 @@ self: super: with self; {
  pylsl = callPackage ../development/python-modules/pylsl { };
  pynfsclient = callPackage ../development/python-modules/pynfsclient { };
  pyngo = callPackage ../development/python-modules/pyngo { };
  pyngrok = callPackage ../development/python-modules/pyngrok { };