Skip to content

Commit 44d4e4f

Browse files
committed
1 parent ac8b46d commit 44d4e4f

File tree

1 file changed

+8
-2
lines changed
  • pkgs/applications/networking/browsers/qutebrowser

1 file changed

+8
-2
lines changed

pkgs/applications/networking/browsers/qutebrowser/default.nix

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,17 @@ let
2626
stripRoot = false;
2727
};
2828

29-
version = "3.2.1";
29+
version = "3.3.1";
3030
in
3131

3232
python3.pkgs.buildPythonApplication {
3333
pname = "qutebrowser" + lib.optionalString (!isQt6) "-qt5";
3434
inherit version;
35+
pyproject = true;
36+
3537
src = fetchurl {
3638
url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz";
37-
hash = "sha256-AqevKmxds42HsiWwuEEsgNmDgzXzLQ6KOPbX+804iX0=";
39+
hash = "sha256-qttkrMxzC8mhXONByaBYCx82OD7Uh09U0xzh2r6U4Xo=";
3840
};
3941

4042
# Needs tox
@@ -47,6 +49,10 @@ python3.pkgs.buildPythonApplication {
4749
qtwayland
4850
];
4951

52+
build-system = with python3.pkgs; [
53+
setuptools
54+
];
55+
5056
nativeBuildInputs = [
5157
wrapQtAppsHook asciidoc
5258
docbook_xml_dtd_45 docbook_xsl libxml2 libxslt

0 commit comments

Comments
 (0)