Files
nixpkgs/pkgs/development/python-modules/dissect-cstruct/default.nix
T
Philipp Bartsch 786e3e89ad python3Packages.dissect-cstruct: update license
With dissect.cstruct release 3.4 the license changed to Apache 2.0.

https://github.com/fox-it/dissect.cstruct/releases/tag/3.4
2026-01-22 12:17:39 +01:00

39 lines
844 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "dissect-cstruct";
version = "4.7";
pyproject = true;
src = fetchFromGitHub {
owner = "fox-it";
repo = "dissect.cstruct";
tag = version;
hash = "sha256-eEaKGFpArg0p3+/I2dH3mQ+eNIVJ8KsUbRcw4Ecrl7g=";
};
build-system = [
setuptools
setuptools-scm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dissect.cstruct" ];
meta = {
description = "Dissect module implementing a parser for C-like structures";
homepage = "https://github.com/fox-it/dissect.cstruct";
changelog = "https://github.com/fox-it/dissect.cstruct/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}