2022-08-29 04:47:14 +00:00
|
|
|
{ lib, fetchFromGitHub, python }:
|
2020-01-08 12:11:26 +00:00
|
|
|
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
2022-08-29 04:47:14 +00:00
|
|
|
version = "1.4.2";
|
2020-01-08 12:11:26 +00:00
|
|
|
pname = "brotab";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "balta2ar";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-08-29 04:47:14 +00:00
|
|
|
hash = "sha256-HKKjiW++FwjdorqquSCIdi1InE6KbMbFKZFYHBxzg8Q=";
|
2020-01-08 12:11:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
|
|
requests
|
|
|
|
flask
|
|
|
|
psutil
|
2020-02-19 09:54:25 +00:00
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2022-08-29 04:47:14 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace requirements/base.txt \
|
|
|
|
--replace "Flask==2.0.2" "Flask>=2.0.2" \
|
|
|
|
--replace "psutil==5.8.0" "psutil>=5.8.0" \
|
|
|
|
--replace "requests==2.24.0" "requests>=2.24.0"
|
2020-01-09 15:29:59 +00:00
|
|
|
'';
|
2020-02-19 09:54:25 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python.pkgs; [
|
2022-08-29 04:47:14 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2020-01-08 12:11:26 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/balta2ar/brotab";
|
|
|
|
description = "Control your browser's tabs from the command line";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ doronbehar ];
|
|
|
|
};
|
|
|
|
}
|