aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/git-revise/default.nix
blob: a6dd3ecb7c803e97c1fde2ac6115dabce42af380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, pythonOlder
, git
, fetchFromGitHub
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "git-revise";
  version = "0.6.0";

  # Missing tests on PyPI
  src = fetchFromGitHub {
    owner = "mystor";
    repo = pname;
    rev = "v${version}";
    sha256 = "03v791yhips9cxz9hr07rhsgxfhwyqq17rzi7ayjhwvy65s4hzs9";
  };

  disabled = pythonOlder "3.6";

  checkInputs = [ git pytestCheckHook ];

  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 ];
  };
}