From 8acd15d8bf96c1f5d3dbb816be89270de503b86a Mon Sep 17 00:00:00 2001 From: kilianar Date: Sat, 11 Jun 2022 23:31:31 +0200 Subject: [PATCH] asciinema: 2.1.0 -> 2.2.0 https://github.com/asciinema/asciinema/releases/tag/v2.2.0 --- pkgs/tools/misc/asciinema/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix index e08d0b5d3f70..6bdc65b3babf 100644 --- a/pkgs/tools/misc/asciinema/default.nix +++ b/pkgs/tools/misc/asciinema/default.nix @@ -2,15 +2,21 @@ python3Packages.buildPythonApplication rec { pname = "asciinema"; - version = "2.1.0"; + version = "2.2.0"; + format = "pyproject"; src = fetchFromGitHub { owner = "asciinema"; repo = "asciinema"; rev = "v${version}"; - sha256 = "1alcz018jrrpasrmgs8nw775a6pf62xq2xgs54c4mb396prdqy4x"; + sha256 = "sha256-ioSNd0Fjk2Fp05lk3HeokIjNYGU0jQEaIDfcFB18mV0="; }; + postPatch = '' + substituteInPlace tests/pty_test.py \ + --replace "python3" "${python3Packages.python}/bin/python" + ''; + checkInputs = [ glibcLocales python3Packages.nose ]; checkPhase = ''