Files

59 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
httpx,
pyjwt,
pytest-asyncio,
pytest-httpx,
pytestCheckHook,
setuptools,
setuptools-scm,
time-machine,
}:
buildPythonPackage rec {
pname = "httpx-auth";
version = "0.23.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Colin-b";
repo = "httpx_auth";
tag = "v${version}";
hash = "sha256-wrPKUAGBzzuWNtwYtTtqOhb1xqYgc83uxn4rjbfDPmo=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ httpx ];
nativeCheckInputs = [
pyjwt
pytest-asyncio
pytest-httpx
pytestCheckHook
time-machine
];
pytestFlags = [
# tests use a 6-byte HMAC key; pyjwt 2.11+ warns and upstream sets filterwarnings=error.
"-Wignore::jwt.warnings.InsecureKeyLengthWarning"
];
pythonImportsCheck = [ "httpx_auth" ];
__darwinAllowLocalNetworking = true;
meta = {
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.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}