From e46141173c135845c282a91b06c56442c87711d8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 5 Apr 2025 14:32:23 +0200 Subject: [PATCH] python313Packages.asyncclick: 8.1.7.2 -> 8.1.8.0 Changelog: https://github.com/python-trio/asyncclick/blob/8.1.8.0+async/CHANGES.rst --- .../python-modules/asyncclick/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/asyncclick/default.nix b/pkgs/development/python-modules/asyncclick/default.nix index 54695ecc0432..c5e40061f262 100644 --- a/pkgs/development/python-modules/asyncclick/default.nix +++ b/pkgs/development/python-modules/asyncclick/default.nix @@ -3,7 +3,7 @@ anyio, buildPythonPackage, fetchFromGitHub, - setuptools-scm, + flit-core, pytestCheckHook, pythonOlder, trio, @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "asyncclick"; - version = "8.1.7.2"; + version = "8.1.8.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -19,13 +19,13 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "python-trio"; repo = "asyncclick"; - tag = version; - hash = "sha256-ahzI7yILq1OpZ6IT0qt8vjzi6I6zAoTrULOl8CqRw4A="; + tag = "${version}+async"; + hash = "sha256-J294pYuNOSm7v2BbwDpzn3uelAnZ3ip2U1gWuchhOtA="; }; - nativeBuildInputs = [ setuptools-scm ]; + build-system = [ flit-core ]; - propagatedBuildInputs = [ anyio ]; + dependencies = [ anyio ]; nativeCheckInputs = [ pytestCheckHook @@ -48,7 +48,7 @@ buildPythonPackage rec { description = "Python composable command line utility"; homepage = "https://github.com/python-trio/asyncclick"; changelog = "https://github.com/python-trio/asyncclick/blob/${version}/CHANGES.rst"; - license = with licenses; [ bsd3 ]; + license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; }