linuxPackages_latest.broadcom_sta: add patch to compile on Kernel 6.12 (#359484)
[NixPkgs.git] / pkgs / by-name / tb / tbump / package.nix
blob1314c1ec6d1262d9f666c43c1cf25ffa1e6d7857
2   lib,
3   fetchPypi,
4   python3Packages,
5 }:
6 python3Packages.buildPythonApplication rec {
7   pname = "tbump";
8   version = "6.11.0";
9   pyproject = true;
11   disabled = python3Packages.pythonOlder "3.8";
13   src = fetchPypi {
14     inherit version;
15     pname = "tbump";
16     hash = "sha256-OF5xDu3wqKb/lZzx6fPP0XyHNhcTL8DsX2Ka8MNVyHA=";
17   };
19   pythonRelaxDeps = [ "tomlkit" ];
22   build-system = with python3Packages; [ poetry-core ];
24   dependencies = with python3Packages; [
25     docopt
26     schema
27     packaging
28     poetry-core
29     tomlkit
30     cli-ui
31   ];
33   meta = {
34     description = "Bump software releases";
35     homepage = "https://github.com/your-tools/tbump";
36     license = lib.licenses.bsd3;
37     mainProgram = "tbump";
38     maintainers = with lib.maintainers; [ slashformotion ];
39   };