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

volatility3: 2.26.2 -> 2.27.0 (#485451)

parents 3b49e522 c5973ad2
Loading
Loading
Loading
Loading
+8 −12
Original line number Diff line number Diff line
@@ -4,21 +4,19 @@
  python3,
}:

python3.pkgs.buildPythonApplication rec {
python3.pkgs.buildPythonApplication (finalAttrs: {
  pname = "volatility3";
  version = "2.26.2";
  version = "2.27.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "volatilityfoundation";
    repo = "volatility3";
    tag = "v${version}";
    hash = "sha256-B7S66/HpXuMOXvKzrnQCskbDQ0kjwBXN85VLr90w+c4=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-TtkLxzZq7tmLDpCl1UpOqdCWM7t+dgiUmQMsIg3vUGs=";
  };

  build-system = with python3.pkgs; [
    setuptools
  ];
  build-system = with python3.pkgs; [ setuptools ];

  dependencies = with python3.pkgs; [
    capstone
@@ -35,14 +33,12 @@ python3.pkgs.buildPythonApplication rec {
  # Project has no tests
  doCheck = false;

  pythonImportsCheck = [
    "volatility3"
  ];
  pythonImportsCheck = [ "volatility3" ];

  meta = {
    description = "Volatile memory extraction frameworks";
    homepage = "https://www.volatilityfoundation.org/";
    changelog = "https://github.com/volatilityfoundation/volatility3/releases/tag/${src.tag}";
    changelog = "https://github.com/volatilityfoundation/volatility3/releases/tag/${finalAttrs.src.tag}";
    license = {
      # Volatility Software License 1.0
      free = false;
@@ -50,4 +46,4 @@ python3.pkgs.buildPythonApplication rec {
    };
    maintainers = with lib.maintainers; [ fab ];
  };
}
})