mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
32 lines
686 B
Nix
32 lines
686 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pygtail";
|
|
version = "0.8.0";
|
|
format = "setuptools";
|
|
|
|
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 = "Library for reading log file lines that have not been read";
|
|
mainProgram = "pygtail";
|
|
license = licenses.gpl2Plus;
|
|
homepage = "https://github.com/bgreenlee/pygtail";
|
|
};
|
|
}
|