diff --git a/pkgs/development/python-modules/in-n-out/default.nix b/pkgs/development/python-modules/in-n-out/default.nix index f431ced8efe..baffe42e0f3 100644 --- a/pkgs/development/python-modules/in-n-out/default.nix +++ b/pkgs/development/python-modules/in-n-out/default.nix @@ -6,27 +6,28 @@ , pytestCheckHook , pythonAtLeast , pythonOlder -, setuptools -, setuptools-scm +, hatchling +, hatch-vcs , toolz }: buildPythonPackage rec { pname = "in-n-out"; - version = "0.1.7"; - format = "setuptools"; + version = "0.1.8"; + format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchPypi { - inherit pname version; - hash = "sha256-g4Dw0ejB6BxcMpRZGgxNDeAyuY93UROVsIrAwv6vSqY="; + pname = "in_n_out"; + inherit version; + hash = "sha256-gWKvh4fmgutLNtBH+RQZnYDxEk46QUIM1T3mgOfQolQ="; }; nativeBuildInputs = [ cython_3 - setuptools - setuptools-scm + hatchling + hatch-vcs ]; propagatedBuildInputs = [ @@ -52,7 +53,7 @@ buildPythonPackage rec { meta = with lib; { description = "Module for dependency injection and result processing"; - homepage = "https://app-model.readthedocs.io/"; + homepage = "https://github.com/pyapp-kit/in-n-out"; changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md"; license = licenses.bsd3; maintainers = with maintainers; [ fab ];