snakefmt: 0.11.0 -> 0.11.2 (#446248)

authored by Yohann Boniface and committed by GitHub c4f13be5 09359856

+7 -6
+7 -6
pkgs/by-name/sn/snakefmt/package.nix
··· 8 8 9 9 python3.pkgs.buildPythonApplication rec { 10 10 pname = "snakefmt"; 11 - version = "0.11.0"; 11 + version = "0.11.2"; 12 12 pyproject = true; 13 13 14 14 disabled = python3.pythonOlder "3.11"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-r8O5LhA8/agP/35381f2zB2rdCJy7nY0K6NC8w5yHzA="; 18 + hash = "sha256-6a03WEAeApH3pFNgB1xXODhrWKGxYNOIJ7QGMNn3NeE="; 19 19 }; 20 20 21 - build-system = [ python3.pkgs.poetry-core ]; 21 + build-system = with python3.pkgs; [ hatchling ]; 22 22 23 23 dependencies = with python3.pkgs; [ 24 24 black 25 25 click 26 - importlib-metadata 27 - toml 28 26 ]; 29 27 30 - pythonRelaxDeps = [ "black" ]; 28 + pythonRelaxDeps = [ 29 + "black" 30 + "click" 31 + ]; 31 32 32 33 pythonImportsCheck = [ "snakefmt" ]; 33 34