nixpkgs/pkgs/development/python-modules/httpx-auth/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.1 KiB
Nix
Raw Normal View History

{
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 ];
};
}