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

python313Packages.dissect-shellitem: 3.10 -> 3.11,...

python313Packages.dissect-shellitem: 3.10 -> 3.11, python313Packages.dissect-regf: 3.12 -> 3.13, python313Packages.dissect-cim: 3.10 -> 3.12 (#411234)
parents 16321454 4574b741
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@

buildPythonPackage rec {
  pname = "acquire";
  version = "3.18";
  version = "3.19";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -27,7 +27,7 @@ buildPythonPackage rec {
    owner = "fox-it";
    repo = "acquire";
    tag = version;
    hash = "sha256-kDoDPeMvpctNnB+e2LnCZ7fw9AP+AjPYDXwVqKedJ88=";
    hash = "sha256-0aqngfv2ZyVw1ymotz1PmXKUZeTHUVL9ICL6cyEn/wk=";
  };

  build-system = [
+5 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "dissect-cim";
  version = "3.10";
  version = "3.12";
  pyproject = true;

  disabled = pythonOlder "3.10";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
    owner = "fox-it";
    repo = "dissect.cim";
    tag = version;
    hash = "sha256-7Mv8yiWEs/mj/JKDrD1BxT75tQr13VgGj0yHdRltcYM=";
    hash = "sha256-e1G4642QeIhtKWvtfiQs3eOl+dFP/8VWZJGvO8dFWxY=";
  };

  build-system = [
@@ -38,6 +38,9 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "dissect.cim" ];

  # gzip.BadGzipFile: Not a gzipped file
  doCheck = false;

  meta = with lib; {
    description = "Dissect module implementing a parser for the Windows Common Information Model (CIM) database";
    homepage = "https://github.com/fox-it/dissect.cim";
+49 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  dissect-cstruct,
  dissect-util,
  fetchFromGitHub,
  setuptools-scm,
  setuptools,
}:

buildPythonPackage rec {
  pname = "dissect-qnxfs";
  version = "1.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "fox-it";
    repo = "dissect.qnxfs";
    tag = version;
    hash = "sha256-UnEwBcaBP64qIWVYWcsxxjWuiAM9yOCGWevnNonQn+8=";
  };

  build-system = [
    setuptools
    setuptools-scm
  ];

  dependencies = [
    dissect-cstruct
    dissect-util
  ];

  optional-dependencies = {
    dev = [
      dissect-cstruct
      dissect-util
    ];
  };

  pythonImportsCheck = [ "dissect.qnxfs" ];

  meta = {
    description = "Dissect module implementing a parser for the QNX4 and QNX6 file systems";
    homepage = "https://github.com/fox-it/dissect.qnxfs";
    changelog = "https://github.com/fox-it/dissect.qnxfs/releases/tag/${src.tag}";
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ fab ];
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "dissect-regf";
  version = "3.12";
  version = "3.13";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
    owner = "fox-it";
    repo = "dissect.regf";
    tag = version;
    hash = "sha256-ONE8dX2AHSboDzSFQ+7ZkIqVmQW3J8QyeOr8ZKrlvqI=";
    hash = "sha256-O2BKOzv0nFQ8rCgTCgYowQTptR1asuJBroqTNeDIIak=";
  };

  nativeBuildInputs = [
+4 −8
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@

buildPythonPackage rec {
  pname = "dissect-shellitem";
  version = "3.10";
  version = "3.11";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -21,7 +21,7 @@ buildPythonPackage rec {
    owner = "fox-it";
    repo = "dissect.shellitem";
    tag = version;
    hash = "sha256-BS+c9QbMMsaoZHyuv6jMxbQFQNJeLt3da8Fq/wwXesQ=";
    hash = "sha256-mHcH6lgTyv1DlEccYRitfby7WMJc3/71ef/OurW3EEw=";
  };

  build-system = [
@@ -38,12 +38,8 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "dissect.shellitem" ];

  disabledTests = [
  # Windows-specific tests
    "test_xp_remote_lnk_file"
    "test_xp_remote_lnk_dir"
    "test_win7_local_lnk_dir"
  ];
  doCheck = false;

  meta = with lib; {
    description = "Dissect module implementing a parser for the Shellitem structures";
Loading