lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.dissect-cstruct: 4.3 -> 4.5

Changelog: https://github.com/fox-it/dissect.cstruct/releases/tag/4.5

+3 -12
+3 -12
pkgs/development/python-modules/dissect-cstruct/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch, 6 5 setuptools, 7 6 setuptools-scm, 8 7 pytestCheckHook, ··· 11 10 12 11 buildPythonPackage rec { 13 12 pname = "dissect-cstruct"; 14 - version = "4.3"; 13 + version = "4.5"; 15 14 pyproject = true; 16 15 17 16 disabled = pythonOlder "3.9"; ··· 20 19 owner = "fox-it"; 21 20 repo = "dissect.cstruct"; 22 21 tag = version; 23 - hash = "sha256-Y6maLjugnso3cc9zyiZ/6AdrftYAAImYNBDXPJdTuWc="; 22 + hash = "sha256-2n7y6nHt7gJtJeJIKpobiC7A+dnD6O/o+psinfOnvT8="; 24 23 }; 25 24 26 - patches = [ 27 - (fetchpatch { 28 - name = "fix-test_types_enum.patch"; 29 - url = "https://github.com/fox-it/dissect.cstruct/commit/b6c73136828fc2ae59b51d1f68529002d7c37131.diff"; 30 - hash = "sha256-hicMolFu/qAw9QkOyug4PNm2Do2PxuXNXPB+/JHOaFg="; 31 - }) 32 - ]; 33 - 34 25 build-system = [ 35 26 setuptools 36 27 setuptools-scm ··· 43 34 meta = with lib; { 44 35 description = "Dissect module implementing a parser for C-like structures"; 45 36 homepage = "https://github.com/fox-it/dissect.cstruct"; 46 - changelog = "https://github.com/fox-it/dissect.cstruct/releases/tag/${version}"; 37 + changelog = "https://github.com/fox-it/dissect.cstruct/releases/tag/${src.tag}"; 47 38 license = licenses.agpl3Only; 48 39 maintainers = with maintainers; [ fab ]; 49 40 };