summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2023-06-14 16:08:17 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2023-06-14 16:08:17 -0700
commitef3e16c79cf11461bdbbe370498d9720b5bbb825 (patch)
tree72de80e907768a3f69bc669fc899ed6be7a95d00
parentce51b2bb02068ac6227e2512feea61ec00129c8e (diff)
downloadnixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.tar
nixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.tar.gz
nixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.tar.bz2
nixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.tar.lz
nixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.tar.xz
nixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.tar.zst
nixpkgs-ef3e16c79cf11461bdbbe370498d9720b5bbb825.zip
python310Packages.httpx-socks: 0.7.5 -> 0.7.6
-rw-r--r--pkgs/development/python-modules/httpx-socks/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/httpx-socks/default.nix b/pkgs/development/python-modules/httpx-socks/default.nix
index 3ac4635ab71..996db8ec1b3 100644
--- a/pkgs/development/python-modules/httpx-socks/default.nix
+++ b/pkgs/development/python-modules/httpx-socks/default.nix
@@ -12,16 +12,19 @@
 , pytestCheckHook
 , python-socks
 , pythonOlder
+, setuptools
 , sniffio
 , starlette
+, tiny-proxy
 , trio
+, trustme
 , yarl
 }:
 
 buildPythonPackage rec {
   pname = "httpx-socks";
-  version = "0.7.5";
-  format = "setuptools";
+  version = "0.7.6";
+  format = "pyproject";
 
   disabled = pythonOlder "3.7";
 
@@ -29,9 +32,13 @@ buildPythonPackage rec {
     owner = "romis2012";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-HwLJ2pScgiNmM/l14aKp47MMuGW1qSaIq7ujpCSRtqA=";
+    hash = "sha256-rLcYC8IO2eCWAL4QIiUg/kyigybq6VNTUjNDXx4KPHc=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
     httpx
     httpcore
@@ -54,6 +61,8 @@ buildPythonPackage rec {
     pytest-trio
     pytestCheckHook
     starlette
+    tiny-proxy
+    trustme
     yarl
   ];