diff --git a/pkgs/development/python-modules/fickling/default.nix b/pkgs/development/python-modules/fickling/default.nix index 1978b17eec50..59c176fa4d4b 100644 --- a/pkgs/development/python-modules/fickling/default.nix +++ b/pkgs/development/python-modules/fickling/default.nix @@ -1,40 +1,36 @@ { lib, - astunparse, buildPythonPackage, - distutils, fetchFromGitHub, - flit-core, + hatchling, numpy, pytestCheckHook, + stdlib-list, torch, torchvision, - stdlib-list, }: buildPythonPackage rec { pname = "fickling"; - version = "0.1.4"; + version = "0.1.5"; pyproject = true; src = fetchFromGitHub { owner = "trailofbits"; repo = "fickling"; tag = "v${version}"; - hash = "sha256-EgVtMYPwSVBlw1bmX3qEeUKvEY7Awv6DOB5tgSLG+xQ="; + hash = "sha256-ExyjOTpIkDM2PmHxYUbe8xNhhQChqfUqTtsNR8Z7ZEk="; }; build-system = [ - distutils - flit-core + hatchling ]; dependencies = [ - astunparse stdlib-list ]; - pythonRelaxDeps = [ "stdlib_list" ]; + pythonRelaxDeps = [ "stdlib-list" ]; optional-dependencies = { torch = [ @@ -59,6 +55,6 @@ buildPythonPackage rec { homepage = "https://github.com/trailofbits/fickling"; changelog = "https://github.com/trailofbits/fickling/releases/tag/${src.tag}"; license = lib.licenses.lgpl3Plus; - maintainers = [ ]; + maintainers = with lib.maintainers; [ sarahec ]; }; }