nixpkgs/pkgs/development/python-modules/git-revise/default.nix

33 lines
742 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2019-10-05 00:33:47 +01:00
, pythonOlder
2020-06-15 10:20:00 +01:00
, git
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "git-revise";
2020-06-15 10:20:00 +01:00
version = "0.6.0";
2020-06-15 10:20:00 +01:00
# Missing tests on PyPI
src = fetchFromGitHub {
owner = "mystor";
repo = pname;
rev = "v${version}";
sha256 = "03v791yhips9cxz9hr07rhsgxfhwyqq17rzi7ayjhwvy65s4hzs9";
};
2019-10-05 00:33:47 +01:00
disabled = pythonOlder "3.6";
2020-06-15 10:20:00 +01:00
checkInputs = [ git pytestCheckHook ];
meta = with lib; {
description = "Efficiently update, split, and rearrange git commits";
homepage = "https://github.com/mystor/git-revise";
2019-10-05 00:33:47 +01:00
changelog = "https://github.com/mystor/git-revise/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ emily ];
};
}