mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Add checkPhase
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
This commit is contained in:
parent
052c103725
commit
d9935b1f71
|
@ -19,6 +19,11 @@ python.pkgs.buildPythonApplication rec {
|
||||||
psutil
|
psutil
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# test_integration.py requires Chrome browser session
|
||||||
|
checkPhase = ''
|
||||||
|
${python.interpreter} -m unittest brotab/tests/test_{brotab,utils}.py
|
||||||
|
'';
|
||||||
|
|
||||||
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";
|
||||||
|
@ -26,4 +31,3 @@ python.pkgs.buildPythonApplication rec {
|
||||||
maintainers = with maintainers; [ doronbehar ];
|
maintainers = with maintainers; [ doronbehar ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue