gitAndTools.bump2version: init at 1.0.0

This commit is contained in:
Jeff Labonte 2020-02-13 15:24:17 -05:00 committed by Jon
parent 6dca90784a
commit ebf01d5614
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, buildPythonApplication, fetchFromGitHub, isPy27, pytest, testfixtures, lib }:
buildPythonApplication rec {
pname = "bump2version";
version = "1.0.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "c4urself";
repo = "${pname}";
rev = "refs/tags/v${version}";
sha256 = "10p7rg569rk3qvzs5kjj17894bqlsg3ihhbln6ciwwfhkfq1kpja";
};
checkInputs = [ pytest testfixtures ];
# X's in pytest are git tests which won't run in sandbox
checkPhase = ''
pytest tests/ -k 'not usage_string_fork'
'';
meta = with stdenv.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 ];
};
}

View File

@ -22,6 +22,8 @@ let
bitbucket-server-cli = callPackage ./bitbucket-server-cli { };
bump2version = pkgs.python37Packages.callPackage ./bump2version { };
darcsToGit = callPackage ./darcs-to-git { };
delta = callPackage ./delta { };