snakefmt: 0.11.0 -> 0.11.2

Changelog: https://github.com/snakemake/snakefmt/releases/tag/v0.11.2

authored by kyehn and committed by kyehn d026e4d7 d1231866

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