ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / git-revise / default.nix
blobb4a771a4c3be5a4725e29d6b45af4f9ac41a457f
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , git
5 , gnupg
6 , fetchFromGitHub
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "git-revise";
12   version = "0.7.0";
14   # Missing tests on PyPI
15   src = fetchFromGitHub {
16     owner = "mystor";
17     repo = pname;
18     rev = "v${version}";
19     sha256 = "sha256-xV1Z9O5FO4Q/XEpNwnX31tbv8CrXY+wF1Ltpfq+ITRg=";
20   };
22   disabled = pythonOlder "3.8";
24   checkInputs = [ git gnupg pytestCheckHook ];
26   meta = with lib; {
27     description = "Efficiently update, split, and rearrange git commits";
28     homepage = "https://github.com/mystor/git-revise";
29     changelog = "https://github.com/mystor/git-revise/blob/${version}/CHANGELOG.md";
30     license = licenses.mit;
31     maintainers = with maintainers; [ emily ];
32   };