about summary refs log tree commit diff
path: root/pkgs/by-name/to/toml-sort/package.nix
blob: 3225530454557019c21682d19eb9b1ae4065b67f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 ];
  };
}