diff --git a/pkgs/development/python-modules/fickling/default.nix b/pkgs/development/python-modules/fickling/default.nix index 287b4a0d1519..fb69aa13c147 100644 --- a/pkgs/development/python-modules/fickling/default.nix +++ b/pkgs/development/python-modules/fickling/default.nix @@ -5,6 +5,7 @@ pythonOlder, hatchling, numpy, + py7zr, pytestCheckHook, stdlib-list, torch, @@ -13,14 +14,14 @@ buildPythonPackage (finalAttrs: { pname = "fickling"; - version = "0.1.7"; + version = "0.1.9"; pyproject = true; src = fetchFromGitHub { owner = "trailofbits"; repo = "fickling"; tag = "v${finalAttrs.version}"; - hash = "sha256-uirVOJ6CI7gBu9lOoPtpjUZeBmIhBMI0tjSDI/ASy7w="; + hash = "sha256-Pn43KwlcWJX8l56FpkIK1tElXoNyfz3/9vTsSOtLrf4="; }; build-system = [ @@ -42,6 +43,7 @@ buildPythonPackage (finalAttrs: { }; nativeCheckInputs = [ + py7zr pytestCheckHook ] ++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;