python310Packages.dissect-xfs: init at 3.1

main
Fabian Affolter 2 years ago
parent c79d57a94b
commit f02656d900
  1. 52
      pkgs/development/python-modules/dissect-xfs/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, dissect-cstruct
, dissect-util
, fetchFromGitHub
, setuptools
, setuptools-scm
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dissect-xfs";
version = "3.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.xfs";
rev = version;
hash = "sha256-Tg4su78Na6IAQhi7aOY8QNs3tnYOYvdnNQV6rn8QpSE=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dissect-cstruct
dissect-util
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"dissect.xfs"
];
meta = with lib; {
description = "Dissect module implementing a parser for the XFS file system";
homepage = "https://github.com/fox-it/dissect.xfs";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}

@ -2495,6 +2495,8 @@ in {
dissect-volume = callPackage ../development/python-modules/dissect-volume { };
dissect-xfs = callPackage ../development/python-modules/dissect-xfs { };
dissononce = callPackage ../development/python-modules/dissononce { };
distlib = callPackage ../development/python-modules/distlib { };

Loading…
Cancel
Save