From e599c2ae330b2779a8c1700809383f950575ea77 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 22 Nov 2022 22:42:22 +0000 Subject: [PATCH 1/2] python310Packages.httpx-socks: 0.7.4 -> 0.7.5 --- pkgs/development/python-modules/httpx-socks/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/httpx-socks/default.nix b/pkgs/development/python-modules/httpx-socks/default.nix index 74f2f41eb260..7f804bb7f0fc 100644 --- a/pkgs/development/python-modules/httpx-socks/default.nix +++ b/pkgs/development/python-modules/httpx-socks/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "httpx-socks"; - version = "0.7.4"; + version = "0.7.5"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "romis2012"; repo = pname; rev = "refs/tags/v${version}"; - sha256 = "sha256-+eWGmCHkXQA+JaEgofqUeFyGyMxSctal+jsqsShFM58="; + sha256 = "sha256-HwLJ2pScgiNmM/l14aKp47MMuGW1qSaIq7ujpCSRtqA="; }; propagatedBuildInputs = [ From 1f2f987b51f1c7f8818b2f1782063a8b7b02f79d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 22 Nov 2022 23:59:32 +0100 Subject: [PATCH 2/2] python310Packages.httpx-socks: add changelog to meta --- .../python-modules/httpx-socks/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/httpx-socks/default.nix b/pkgs/development/python-modules/httpx-socks/default.nix index 7f804bb7f0fc..6a79d7bf0e75 100644 --- a/pkgs/development/python-modules/httpx-socks/default.nix +++ b/pkgs/development/python-modules/httpx-socks/default.nix @@ -23,7 +23,7 @@ buildPythonPackage rec { version = "0.7.5"; format = "setuptools"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "romis2012"; @@ -39,8 +39,12 @@ buildPythonPackage rec { ]; passthru.optional-dependencies = { - asyncio = [ async-timeout ]; - trio = [ trio ]; + asyncio = [ + async-timeout + ]; + trio = [ + trio + ]; }; checkInputs = [ @@ -66,6 +70,7 @@ buildPythonPackage rec { meta = with lib; { description = "Proxy (HTTP, SOCKS) transports for httpx"; homepage = "https://github.com/romis2012/httpx-socks"; + changelog = "https://github.com/romis2012/httpx-socks/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; };