Merge pull request #70424 from emilazy/git-revise-0.5.0

git-revise: 0.4.2 -> 0.5.0
This commit is contained in:
Maximilian Bosch 2019-10-05 13:36:19 +02:00 committed by GitHub
commit ec5660d10b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonAtLeast , pythonOlder
, tox , tox
, pytest , pytest
, pylint , pylint
@ -11,14 +11,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "git-revise"; pname = "git-revise";
version = "0.4.2"; version = "0.5.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "1mq1fh8m6jxl052d811cgpl378hiq20a8zrhdjn0i3dqmxrcb8vs"; sha256 = "16sxmxksb5gjj6zfh1wy2czqj9nm4sd3j4fbrsphs8l065dzzikj";
}; };
disabled = !(pythonAtLeast "3.6"); disabled = pythonOlder "3.6";
checkInputs = [ tox pytest pylint mypy black ]; checkInputs = [ tox pytest pylint mypy black ];
@ -29,6 +29,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Efficiently update, split, and rearrange git commits"; description = "Efficiently update, split, and rearrange git commits";
homepage = https://github.com/mystor/git-revise; homepage = https://github.com/mystor/git-revise;
changelog = "https://github.com/mystor/git-revise/blob/${version}/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ emily ]; maintainers = with maintainers; [ emily ];
}; };