about summary refs log tree commit diff
path: root/pkgs/development/python-modules/httpx-socks
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-22 23:59:32 +0100
committerGitHub <noreply@github.com>2022-11-22 23:59:32 +0100
commit1f2f987b51f1c7f8818b2f1782063a8b7b02f79d (patch)
tree2f30c6e32cea47eaa969a875795704484da20f3a /pkgs/development/python-modules/httpx-socks
parente599c2ae330b2779a8c1700809383f950575ea77 (diff)
python310Packages.httpx-socks: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules/httpx-socks')
-rw-r--r--pkgs/development/python-modules/httpx-socks/default.nix11
1 files 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 7f804bb7f0fcb..6a79d7bf0e756 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 ];
   };