Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2ce7e4ffb789
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ecfb2b41ced5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 19, 2020

  1. brotab: 1.1.0 -> 1.2.1

    Cleanup and fix deps a little bit.
    doronbehar committed Feb 19, 2020
    Copy the full SHA
    896f19d View commit details

Commits on Mar 30, 2020

  1. Merge pull request #80522 from doronbehar/update-brotab

    brotab: 1.1.0 -> 1.2.1
    bhipple authored Mar 30, 2020
    Copy the full SHA
    ecfb2b4 View commit details
Showing with 8 additions and 5 deletions.
  1. +8 −5 pkgs/tools/misc/brotab/default.nix
13 changes: 8 additions & 5 deletions pkgs/tools/misc/brotab/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
{ lib, fetchFromGitHub, glibcLocales, python }:

python.pkgs.buildPythonApplication rec {
version = "1.1.0";
version = "1.2.1";
pname = "brotab";

src = fetchFromGitHub {
owner = "balta2ar";
repo = pname;
rev = version;
sha256 = "17yj5i8p28a7zmixdfa1i4gfc7c2fmdkxlymazasar58dz8m68mw";
sha256 = "14yz0szwzdjvwkw24rma34y6iiwnw9qzsm89gkglc0xxa6msg6j3";
};

propagatedBuildInputs = with python.pkgs; [
requests
flask
requests
pytest
psutil
setuptools
];

checkBuildInputs = with python.pkgs; [
pytest
];

# test_integration.py requires Chrome browser session
checkPhase = ''
${python.interpreter} -m unittest brotab/tests/test_{brotab,utils}.py
'';

meta = with lib; {
homepage = "https://github.com/balta2ar/brotab";
description = "Control your browser's tabs from the command line";