Loading pkgs/development/python-modules/httpx-oauth/default.nix 0 → 100644 +53 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fastapi, fetchFromGitHub, hatchling, hatch-regex-commit, httpx, pytest-asyncio, pytest-cov-stub, pytest-mock, pytestCheckHook, respx, }: buildPythonPackage rec { pname = "httpx-oauth"; version = "0.15.1"; pyproject = true; src = fetchFromGitHub { owner = "frankie567"; repo = "httpx-oauth"; rev = "refs/tags/v${version}"; hash = "sha256-f3X3kSw7elTScCA3bNggwXyyHORre6Xzup/D0kgn4DQ="; }; build-system = [ hatchling hatch-regex-commit ]; dependencies = [ httpx ]; nativeCheckInputs = [ fastapi pytest-asyncio pytest-cov-stub pytest-mock pytestCheckHook respx ]; pythonImportsCheck = [ "httpx_oauth" ]; meta = with lib; { description = "Async OAuth client using HTTPX"; homepage = "https://github.com/frankie567/httpx-oauth"; changelog = "https://github.com/frankie567/httpx-oauth/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ SuperSandro2000 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5899,6 +5899,8 @@ self: super: with self; { httpx-ntlm = callPackage ../development/python-modules/httpx-ntlm { }; httpx-oauth = callPackage ../development/python-modules/httpx-oauth { }; httpx-socks = callPackage ../development/python-modules/httpx-socks { }; httpx-sse = callPackage ../development/python-modules/httpx-sse { }; Loading Loading
pkgs/development/python-modules/httpx-oauth/default.nix 0 → 100644 +53 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fastapi, fetchFromGitHub, hatchling, hatch-regex-commit, httpx, pytest-asyncio, pytest-cov-stub, pytest-mock, pytestCheckHook, respx, }: buildPythonPackage rec { pname = "httpx-oauth"; version = "0.15.1"; pyproject = true; src = fetchFromGitHub { owner = "frankie567"; repo = "httpx-oauth"; rev = "refs/tags/v${version}"; hash = "sha256-f3X3kSw7elTScCA3bNggwXyyHORre6Xzup/D0kgn4DQ="; }; build-system = [ hatchling hatch-regex-commit ]; dependencies = [ httpx ]; nativeCheckInputs = [ fastapi pytest-asyncio pytest-cov-stub pytest-mock pytestCheckHook respx ]; pythonImportsCheck = [ "httpx_oauth" ]; meta = with lib; { description = "Async OAuth client using HTTPX"; homepage = "https://github.com/frankie567/httpx-oauth"; changelog = "https://github.com/frankie567/httpx-oauth/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ SuperSandro2000 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5899,6 +5899,8 @@ self: super: with self; { httpx-ntlm = callPackage ../development/python-modules/httpx-ntlm { }; httpx-oauth = callPackage ../development/python-modules/httpx-oauth { }; httpx-socks = callPackage ../development/python-modules/httpx-socks { }; httpx-sse = callPackage ../development/python-modules/httpx-sse { }; Loading