python310Packages.dissect-clfs: init at 1.1

main
Fabian Affolter 2 years ago
parent 00eb66b55c
commit 6d289907ab
  1. 50
      pkgs/development/python-modules/dissect-clfs/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, dissect-cstruct
, fetchFromGitHub
, setuptools
, setuptools-scm
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dissect-clfs";
version = "1.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.clfs";
rev = version;
hash = "sha256-5rG8YiVBU4ETLgQoFnMaeXHttIB26+OhIdYjKDKmPBc=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dissect-cstruct
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"dissect.clfs"
];
meta = with lib; {
description = "Dissect module implementing a parser for the CLFS (Common Log File System) file system";
homepage = "https://github.com/fox-it/dissect.clfs";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}

@ -2477,6 +2477,8 @@ in {
diskcache = callPackage ../development/python-modules/diskcache { };
dissect-clfs = callPackage ../development/python-modules/dissect-clfs { };
dissect-cstruct = callPackage ../development/python-modules/dissect-cstruct { };
dissononce = callPackage ../development/python-modules/dissononce { };

Loading…
Cancel
Save