mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 14:43:47 +00:00
![AndersonTorres](/assets/img/avatar_default.png)
We do not use a "plugin system" for Git addons anymore, and therefore this directory is no longer useful. Indeed that directory is way more confusing, given that it includes more than mere Git addons, going from Bitbucket server command-line tools to complete rewrites of Git in exotic programming languages. Also, without this directory, the mental load of decision-making reduces a lot. When anyone is interested in including a new git-related tool, just put it into pkgs/applications/version-management, without apologies.
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonApplication
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, testfixtures
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "bump2version";
|
|
version = "1.0.1";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "c4urself";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-j6HKi3jTwSgGBrA8PCJJNg+yQqRMo1aqaLgPGf4KAKU=";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
testfixtures
|
|
];
|
|
|
|
disabledTests = [
|
|
# X's in pytest are git tests which won't run in sandbox
|
|
"usage_string_fork"
|
|
"test_usage_string"
|
|
"test_defaults_in_usage_with_config"
|
|
];
|
|
|
|
pythonImportsCheck = [ "bumpversion" ];
|
|
|
|
meta = with lib; {
|
|
description = "Version-bump your software with a single command";
|
|
longDescription = ''
|
|
A small command line tool to simplify releasing software by updating
|
|
all version strings in your source code by the correct increment.
|
|
'';
|
|
homepage = "https://github.com/c4urself/bump2version";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jefflabonte ];
|
|
};
|
|
}
|