2025-03-29 17:39:18 +01:00

49 lines
1.0 KiB
Nix

{
lib,
python3,
fetchPypi,
nix-update-script,
versionCheckHook,
}:
python3.pkgs.buildPythonApplication rec {
pname = "snakefmt";
version = "0.11.0";
pyproject = true;
disabled = python3.pythonOlder "3.11";
src = fetchPypi {
inherit pname version;
hash = "sha256-r8O5LhA8/agP/35381f2zB2rdCJy7nY0K6NC8w5yHzA=";
};
build-system = [ python3.pkgs.poetry-core ];
dependencies = with python3.pkgs; [
black
click
importlib-metadata
toml
];
pythonRelaxDeps = [ "black" ];
pythonImportsCheck = [ "snakefmt" ];
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Uncompromising Snakemake code formatter";
homepage = "https://pypi.org/project/snakefmt/";
changelog = "https://github.com/snakemake/snakefmt/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jolars ];
mainProgram = "snakefmt";
};
}