From ad87e774ead2a38928fe447eb45e0b03a8d3e129 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 21 Sep 2024 22:36:40 +0200 Subject: [PATCH] python312Packages.httpx-socks: adjust dependencies --- pkgs/development/python-modules/httpx-socks/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/httpx-socks/default.nix b/pkgs/development/python-modules/httpx-socks/default.nix index 97d65fafa3f2..571451cdf5b1 100644 --- a/pkgs/development/python-modules/httpx-socks/default.nix +++ b/pkgs/development/python-modules/httpx-socks/default.nix @@ -34,13 +34,13 @@ buildPythonPackage rec { hash = "sha256-9v5DfxEtM7jq+b8wR0M1klTSnSdFjQ4aDl8ZSZWxbFA="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ httpx httpcore python-socks - ]; + ] ++ python-socks.optional-dependencies.asyncio; optional-dependencies = { asyncio = [ async-timeout ];