summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cleanit/default.nix
blob: 931bc897bd7c6480129dbfd6d8747ca698f9f6a0 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,

  # build dependencies
  poetry-core,

  # dependencies
  appdirs,
  babelfish,
  chardet,
  click,
  jsonschema,
  pysrt,
  pyyaml,

  # tests
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "cleanit";
  version = "0.4.9";
  pyproject = true;

  disabled = pythonOlder "3.11";

  src = fetchFromGitHub {
    owner = "ratoaq2";
    repo = "cleanit";
    tag = version;
    hash = "sha256-5fzBcOr6PGp847S7qLsXgYKxPcGW4mM5B5QNBSvH7BM=";
  };

  build-system = [ poetry-core ];

  dependencies = [
    appdirs
    babelfish
    chardet
    click
    jsonschema
    pysrt
    pyyaml
  ];

  pythonRelaxDeps = [
    "click"
    "jsonschema"
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "cleanit" ];

  meta = {
    description = "Command line tool that helps you to keep your subtitles clean";
    homepage = "https://github.com/ratoaq2/cleanit";
    changelog = "https://github.com/ratoaq2/cleanit/releases/tag/${src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ eljamm ];
    mainProgram = "cleanit";
  };
}