diff options
Diffstat (limited to 'pkgs/development/python-modules/pybrowsers/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pybrowsers/default.nix | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pybrowsers/default.nix b/pkgs/development/python-modules/pybrowsers/default.nix index 859b1faa4b4e..76e427fef92f 100644 --- a/pkgs/development/python-modules/pybrowsers/default.nix +++ b/pkgs/development/python-modules/pybrowsers/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, poetry-core -, pythonOlder -, pyxdg +{ + lib, + buildPythonPackage, + fetchFromGitHub, + poetry-core, + pythonOlder, + pyxdg, }: buildPythonPackage rec { @@ -24,20 +25,14 @@ buildPythonPackage rec { sed -i "/--cov/d" pyproject.toml ''; - nativeBuildInputs = [ - poetry-core - ]; + nativeBuildInputs = [ poetry-core ]; - propagatedBuildInputs = [ - pyxdg - ]; + propagatedBuildInputs = [ pyxdg ]; # Tests want to interact with actual browsers doCheck = false; - pythonImportsCheck = [ - "browsers" - ]; + pythonImportsCheck = [ "browsers" ]; meta = with lib; { description = "Python library for detecting and launching browsers"; |