tbump: init at 6.11.0
This commit is contained in:
parent
7ca220b9f6
commit
1fc321ee73
41
pkgs/by-name/tb/tbump/package.nix
Normal file
41
pkgs/by-name/tb/tbump/package.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
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" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user