From 8bdb5204be1e2d7168cdb44d28d57c4a09286bf7 Mon Sep 17 00:00:00 2001 From: Sebastien Braun Date: Wed, 28 Oct 2020 22:57:33 +0100 Subject: [PATCH] aria2: refactor to avoid python2 dependency Use python3 Sphinx package instead of python2 Sphinx package, to avoid build-time dependency on python 2, as per https://github.com/NixOS/nixpkgs/issues/101964 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 64c08133c688..ff3444cd47b0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1326,7 +1326,7 @@ in aria2 = callPackage ../tools/networking/aria2 { inherit (darwin.apple_sdk.frameworks) Security; - inherit (pythonPackages) sphinx; + inherit (python3Packages) sphinx; }; aria = aria2;