From 455fa0b191623a8f2c0f50df5cf7b3cdb9f838d9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 1 Sep 2025 21:00:51 +0200 Subject: [PATCH] python313Packages.typer-shell: 0.2.1 -> 1.0.3 --- .../development/python-modules/typer-shell/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/typer-shell/default.nix b/pkgs/development/python-modules/typer-shell/default.nix index cdc436273118..973d481fff7d 100644 --- a/pkgs/development/python-modules/typer-shell/default.nix +++ b/pkgs/development/python-modules/typer-shell/default.nix @@ -1,11 +1,11 @@ { lib, buildPythonPackage, - click, click-shell, + click, fetchFromGitHub, + hatchling, iterfzf, - poetry-core, pythonOlder, pyyaml, rich, @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "typer-shell"; - version = "0.2.1"; + version = "1.0.3"; pyproject = true; disabled = pythonOlder "3.9"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "FergusFettes"; repo = "typer-shell"; tag = "v${version}"; - hash = "sha256-ch5xElSIIIYNtE1Wb6aWUvbV0gT5MU1sLIY+suYzjHE="; + hash = "sha256-vjinzBCaEPWbroxT7OmUQIvtwlPivYO0soGqvyRXVc4="; }; pythonRelaxDeps = [ @@ -32,7 +32,7 @@ buildPythonPackage rec { "typer" ]; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; dependencies = [ click