python.pkgs.pygtail: init at 0.8.0
This commit is contained in:
parent
efbeb74d0d
commit
6a286fcba7
25
pkgs/development/python-modules/pygtail/default.nix
Normal file
25
pkgs/development/python-modules/pygtail/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pygtail";
|
||||||
|
version = "0.8.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bgreenlee";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1f8qlijiwn10jxg1bsi6q42fznbg8rw039yaxfh6rzbaj2gaxbz1";
|
||||||
|
};
|
||||||
|
|
||||||
|
# remove at next bump, tag is one commit early for 0.8.0
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pygtail/core.py \
|
||||||
|
--replace 0.7.0 0.8.0
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A library for reading log file lines that have not been read";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
homepage = https://github.com/bgreenlee/pygtail;
|
||||||
|
};
|
||||||
|
}
|
@ -339,6 +339,8 @@ in {
|
|||||||
|
|
||||||
pygobject3 = callPackage ../development/python-modules/pygobject/3.nix { };
|
pygobject3 = callPackage ../development/python-modules/pygobject/3.nix { };
|
||||||
|
|
||||||
|
pygtail = callPackage ../development/python-modules/pygtail { };
|
||||||
|
|
||||||
pygtk = callPackage ../development/python-modules/pygtk { libglade = null; };
|
pygtk = callPackage ../development/python-modules/pygtk { libglade = null; };
|
||||||
|
|
||||||
pygtksourceview = callPackage ../development/python-modules/pygtksourceview { };
|
pygtksourceview = callPackage ../development/python-modules/pygtksourceview { };
|
||||||
|
Loading…
Reference in New Issue
Block a user