Skip to content

Commit

Permalink
Merge pull request #319793 from isabelroses/feat/toml-sort
Browse files Browse the repository at this point in the history
toml-sort: init at 0.23.1
  • Loading branch information
Aleksanaa committed Jun 22, 2024
2 parents 165dfa1 + 6a8f3db commit 355ac53
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pkgs/by-name/to/toml-sort/package.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 355ac53

Please sign in to comment.