From 5a5c6fd6755bc26b8d47a45ab1a964117fd5cff1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 6 Jul 2023 23:10:47 +0200 Subject: [PATCH] python311Packages.in-n-out: 0.1.7 -> 0.1.8 Changelog: https://github.com/pyapp-kit/in-n-out/blob/v0.1.8/CHANGELOG.md --- .../python-modules/in-n-out/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) 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 ];