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