1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

grin: 1.2.1 -> 1.3.0

Update grin to Python 3 compatible version (#148779)
This commit is contained in:
Simon Jagoe 2021-12-06 00:43:54 +02:00 committed by Jonathan Ringer
parent 69263d42c1
commit 424599f94c

View file

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