Unverified Commit f0055fd4 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python3Packages.libtmux: 0.53.0 -> 0.53.1 (#495073)

parents f8773209 47765403
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -11,16 +11,16 @@
  tmux,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "libtmux";
  version = "0.53.0";
  version = "0.53.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "tmux-python";
    repo = "libtmux";
    tag = "v${version}";
    hash = "sha256-lGi5hjq1lcZtotCbNmwE0tPqwwEj5c9CJLx78eibg6Y=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-mI6oqZ4FiWG8Xe70XV3JAm4Ula1r8JnNKLSVbs2QrGw=";
  };

  postPatch = ''
@@ -63,8 +63,8 @@ buildPythonPackage rec {
  meta = {
    description = "Typed scripting library / ORM / API wrapper for tmux";
    homepage = "https://libtmux.git-pull.com/";
    changelog = "https://github.com/tmux-python/libtmux/raw/${src.tag}/CHANGES";
    changelog = "https://github.com/tmux-python/libtmux/raw/${finalAttrs.src.tag}/CHANGES";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ otavio ];
  };
}
})