about summary refs log tree commit diff
path: root/pkgs/by-name/tb/tbump/package.nix
blob: 1314c1ec6d1262d9f666c43c1cf25ffa1e6d7857 (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
{
  lib,
  fetchPypi,
  python3Packages,
}:
python3Packages.buildPythonApplication rec {
  pname = "tbump";
  version = "6.11.0";
  pyproject = true;

  disabled = python3Packages.pythonOlder "3.8";

  src = fetchPypi {
    inherit version;
    pname = "tbump";
    hash = "sha256-OF5xDu3wqKb/lZzx6fPP0XyHNhcTL8DsX2Ka8MNVyHA=";
  };

  pythonRelaxDeps = [ "tomlkit" ];


  build-system = with python3Packages; [ poetry-core ];

  dependencies = with python3Packages; [
    docopt
    schema
    packaging
    poetry-core
    tomlkit
    cli-ui
  ];

  meta = {
    description = "Bump software releases";
    homepage = "https://github.com/your-tools/tbump";
    license = lib.licenses.bsd3;
    mainProgram = "tbump";
    maintainers = with lib.maintainers; [ slashformotion ];
  };
}