From d026e4d7fb7942798536eae6f31abf10490e3b60 Mon Sep 17 00:00:00 2001 From: kyehn Date: Fri, 26 Sep 2025 14:07:47 +0800 Subject: [PATCH] snakefmt: 0.11.0 -> 0.11.2 Changelog: https://github.com/snakemake/snakefmt/releases/tag/v0.11.2 --- pkgs/by-name/sn/snakefmt/package.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/sn/snakefmt/package.nix b/pkgs/by-name/sn/snakefmt/package.nix index 44735da75e42..9aa688267d78 100644 --- a/pkgs/by-name/sn/snakefmt/package.nix +++ b/pkgs/by-name/sn/snakefmt/package.nix @@ -8,26 +8,27 @@ python3.pkgs.buildPythonApplication rec { pname = "snakefmt"; - version = "0.11.0"; + version = "0.11.2"; pyproject = true; disabled = python3.pythonOlder "3.11"; src = fetchPypi { inherit pname version; - hash = "sha256-r8O5LhA8/agP/35381f2zB2rdCJy7nY0K6NC8w5yHzA="; + hash = "sha256-6a03WEAeApH3pFNgB1xXODhrWKGxYNOIJ7QGMNn3NeE="; }; - build-system = [ python3.pkgs.poetry-core ]; + build-system = with python3.pkgs; [ hatchling ]; dependencies = with python3.pkgs; [ black click - importlib-metadata - toml ]; - pythonRelaxDeps = [ "black" ]; + pythonRelaxDeps = [ + "black" + "click" + ]; pythonImportsCheck = [ "snakefmt" ];