grin: 1.2.1 -> 1.3.0
Update grin to Python 3 compatible version (#148779)
This commit is contained in:
parent
69263d42c1
commit
424599f94c
1 changed files with 8 additions and 8 deletions
|
@ -1,21 +1,21 @@
|
|||
{ lib, fetchFromGitHub, python2Packages }:
|
||||
{ lib, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "grin";
|
||||
version = "1.2.1";
|
||||
version = "1.3.0";
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rkern";
|
||||
owner = "matthew-brett";
|
||||
repo = pname;
|
||||
rev = "8dd4b5309b3bc04fe9d3e71836420f7d8d4a293f";
|
||||
sha256 = "0vz2aahwdcy1296g4w3i79dkvmzk9jc2n2zmlcvlg5m3s6h7b6jd";
|
||||
rev = "1.3.0";
|
||||
sha256 = "057d05vzx4sf415vnh3qj2g351xhb3illjxjs9mdl3nsnb5r84kv";
|
||||
};
|
||||
|
||||
buildInputs = with python2Packages; [ nose ];
|
||||
buildInputs = with python3Packages; [ nose ];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/rkern/grin";
|
||||
homepage = "https://github.com/matthew-brett/grin";
|
||||
description = "A grep program configured the way I like it";
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = [ lib.maintainers.sjagoe ];
|
||||
|
|
Loading…
Reference in a new issue