Merge pull request #241971 from fabaff/in-n-out-bump

python311Packages.in-n-out: 0.1.7 -> 0.1.8

authored by

Fabian Affolter and committed by
GitHub
e08fab04 f8043b52

+10 -9
+10 -9
pkgs/development/python-modules/in-n-out/default.nix
··· 6 6 , pytestCheckHook 7 7 , pythonAtLeast 8 8 , pythonOlder 9 - , setuptools 10 - , setuptools-scm 9 + , hatchling 10 + , hatch-vcs 11 11 , toolz 12 12 }: 13 13 14 14 buildPythonPackage rec { 15 15 pname = "in-n-out"; 16 - version = "0.1.7"; 17 - format = "setuptools"; 16 + version = "0.1.8"; 17 + format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.8"; 20 20 21 21 src = fetchPypi { 22 - inherit pname version; 23 - hash = "sha256-g4Dw0ejB6BxcMpRZGgxNDeAyuY93UROVsIrAwv6vSqY="; 22 + pname = "in_n_out"; 23 + inherit version; 24 + hash = "sha256-gWKvh4fmgutLNtBH+RQZnYDxEk46QUIM1T3mgOfQolQ="; 24 25 }; 25 26 26 27 nativeBuildInputs = [ 27 28 cython_3 28 - setuptools 29 - setuptools-scm 29 + hatchling 30 + hatch-vcs 30 31 ]; 31 32 32 33 propagatedBuildInputs = [ ··· 52 53 53 54 meta = with lib; { 54 55 description = "Module for dependency injection and result processing"; 55 - homepage = "https://app-model.readthedocs.io/"; 56 + homepage = "https://github.com/pyapp-kit/in-n-out"; 56 57 changelog = "https://github.com/pyapp-kit/in-n-out/blob/v${version}/CHANGELOG.md"; 57 58 license = licenses.bsd3; 58 59 maintainers = with maintainers; [ fab ];