depot/third_party/nixpkgs/pkgs/development/python-modules/httpx-auth/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

56 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
httpx,
pyjwt,
pytest-asyncio,
pytest-httpx,
pytestCheckHook,
pythonOlder,
setuptools,
setuptools-scm,
time-machine,
}:
buildPythonPackage rec {
pname = "httpx-auth";
version = "0.22.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Colin-b";
repo = "httpx_auth";
rev = "refs/tags/v${version}";
hash = "sha256-7azPyep+R55CdRwbdo20y4YNV47c8CwXgOj4q4t25oc=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ httpx ];
nativeCheckInputs = [
pyjwt
pytest-asyncio
pytest-httpx
pytestCheckHook
time-machine
];
pythonImportsCheck = [ "httpx_auth" ];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Authentication classes to be used with httpx";
homepage = "https://github.com/Colin-b/httpx_auth";
changelog = "https://github.com/Colin-b/httpx_auth/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ natsukium ];
};
}