toml-sort: init at 0.23.1

This commit is contained in:
isabel 2024-06-14 11:07:50 +01:00
parent 14414643a4
commit 6a8f3db202
No known key found for this signature in database
GPG Key ID: 08A97B9A107A1798

View File

@ -0,0 +1,39 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
let
version = "0.23.1";
in
python3Packages.buildPythonApplication {
pname = "toml-sort";
inherit version;
pyproject = true;
src = fetchFromGitHub {
owner = "pappasam";
repo = "toml-sort";
rev = "refs/tags/v${version}";
hash = "sha256-7V2WBZYAdsA4Tiy9/2UPOcThSNE3ZXM713j57KDCegk=";
};
build-system = [ python3Packages.poetry-core ];
dependencies = [ python3Packages.tomlkit ];
nativeCheckInputs = [ python3Packages.pytestCheckHook ];
postPatch = ''
substituteInPlace "tests/test_cli.py" \
--replace-fail "toml-sort" "$out/bin/toml-sort"
'';
meta = {
mainProgram = "toml-sort";
homepage = "https://github.com/pappasam/toml-sort";
description = "Command line utility to sort and format your toml files";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ isabelroses ];
};
}