mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
39 lines
900 B
Nix
39 lines
900 B
Nix
{ lib, fetchFromGitHub, python }:
|
|
|
|
python.pkgs.buildPythonApplication rec {
|
|
version = "1.4.2";
|
|
pname = "brotab";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "balta2ar";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-HKKjiW++FwjdorqquSCIdi1InE6KbMbFKZFYHBxzg8Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python.pkgs; [
|
|
requests
|
|
flask
|
|
psutil
|
|
setuptools
|
|
];
|
|
|
|
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"
|
|
'';
|
|
|
|
nativeCheckInputs = with python.pkgs; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|