Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1.0 KiB
Nix
50 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "snakefmt";
|
|
version = "0.11.2";
|
|
pyproject = true;
|
|
|
|
disabled = python3.pythonOlder "3.11";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-6a03WEAeApH3pFNgB1xXODhrWKGxYNOIJ7QGMNn3NeE=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ hatchling ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
black
|
|
click
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"black"
|
|
"click"
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|