about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hatch-regex-commit/default.nix
blob: 9cd936d5798f3c4335318410bb59211fcd329076 (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
40
41
42
43
44
45
46
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  hatch-regex-commit,
  hatchling,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "hatch-regex-commit";
  version = "0.0.3";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "frankie567";
    repo = "hatch-regex-commit";
    rev = "refs/tags/v${version}";
    hash = "sha256-E0DIBBaDmTCsZQ41NcjcbzgJ16BwhdexlrGWBdf77oA=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail 'dynamic = ["version"]' 'version = "${version}"' \
      --replace-fail ', "hatch-regex-commit"' "" \
      --replace-fail " --cov-report=term-missing --cov-config=pyproject.toml --cov=hatch_regex_commit --cov=tests" ""
  '';

  build-system = [ hatchling ];

  dependencies = [ hatchling ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [ "hatch_regex_commit" ];

  meta = with lib; {
    description = "Hatch plugin to create a commit and tag when bumping version";
    homepage = "https://github.com/frankie567/hatch-regex-commit";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}