brotab: 1.3.0 -> 1.4.2

This commit is contained in:
Anthony Roussel 2022-08-29 06:47:14 +02:00
parent 2b5e1bce52
commit 1bfbba73a9

View File

@ -1,14 +1,14 @@
{ lib, fetchFromGitHub, glibcLocales, python }: { lib, fetchFromGitHub, python }:
python.pkgs.buildPythonApplication rec { python.pkgs.buildPythonApplication rec {
version = "1.3.0"; version = "1.4.2";
pname = "brotab"; pname = "brotab";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "balta2ar"; owner = "balta2ar";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1ja9qaf3rxm0chgzs5mpw973h7ibb454k9mbfbb2gl12gr9zllyw"; hash = "sha256-HKKjiW++FwjdorqquSCIdi1InE6KbMbFKZFYHBxzg8Q=";
}; };
propagatedBuildInputs = with python.pkgs; [ propagatedBuildInputs = with python.pkgs; [
@ -18,15 +18,17 @@ python.pkgs.buildPythonApplication rec {
setuptools setuptools
]; ];
checkBuildInputs = with python.pkgs; [ postPatch = ''
pytest substituteInPlace requirements/base.txt \
]; --replace "Flask==2.0.2" "Flask>=2.0.2" \
--replace "psutil==5.8.0" "psutil>=5.8.0" \
# test_integration.py requires Chrome browser session --replace "requests==2.24.0" "requests>=2.24.0"
checkPhase = ''
${python.interpreter} -m unittest brotab/tests/test_{brotab,utils}.py
''; '';
checkInputs = with python.pkgs; [
pytestCheckHook
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/balta2ar/brotab"; homepage = "https://github.com/balta2ar/brotab";
description = "Control your browser's tabs from the command line"; description = "Control your browser's tabs from the command line";