python3Packages.httpx-curl-cffi: init at 0.1.5

This commit is contained in:
Alexander Sieg
2026-04-06 13:27:05 +02:00
parent da1875105f
commit d2ee588137
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchPypi,
pdm-backend,
curl-cffi,
httpx,
typing-extensions,
}:
buildPythonPackage (finalAttrs: {
pname = "httpx-curl-cffi";
version = "0.1.5";
pyproject = true;
src = fetchPypi {
pname = "httpx_curl_cffi";
inherit (finalAttrs) version;
hash = "sha256-F37plo6doUJAcBeBbMP7CKsoGxNPdzqTWbakZQpsgfM=";
};
build-system = [
pdm-backend
];
dependencies = [
curl-cffi
httpx
typing-extensions
];
pythonImportsCheck = [
"httpx_curl_cffi"
];
meta = {
description = "Httpx transport for curl_cffi (python bindings for curl-impersonate";
homepage = "https://pypi.org/project/httpx-curl-cffi";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ xanderio ];
};
})
+2
View File
@@ -7224,6 +7224,8 @@ self: super: with self; {
httpx-auth = callPackage ../development/python-modules/httpx-auth { };
httpx-curl-cffi = callPackage ../development/python-modules/httpx-curl-cffi { };
httpx-ntlm = callPackage ../development/python-modules/httpx-ntlm { };
httpx-oauth = callPackage ../development/python-modules/httpx-oauth { };