lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

git-revise: 0.6.0 -> 0.7.0

+5 -4
+5 -4
pkgs/development/python-modules/git-revise/default.nix
··· 2 2 , buildPythonPackage 3 3 , pythonOlder 4 4 , git 5 + , gnupg 5 6 , fetchFromGitHub 6 7 , pytestCheckHook 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "git-revise"; 11 - version = "0.6.0"; 12 + version = "0.7.0"; 12 13 13 14 # Missing tests on PyPI 14 15 src = fetchFromGitHub { 15 16 owner = "mystor"; 16 17 repo = pname; 17 18 rev = "v${version}"; 18 - sha256 = "03v791yhips9cxz9hr07rhsgxfhwyqq17rzi7ayjhwvy65s4hzs9"; 19 + sha256 = "sha256-xV1Z9O5FO4Q/XEpNwnX31tbv8CrXY+wF1Ltpfq+ITRg="; 19 20 }; 20 21 21 - disabled = pythonOlder "3.6"; 22 + disabled = pythonOlder "3.8"; 22 23 23 - checkInputs = [ git pytestCheckHook ]; 24 + checkInputs = [ git gnupg pytestCheckHook ]; 24 25 25 26 meta = with lib; { 26 27 description = "Efficiently update, split, and rearrange git commits";