python311Packages.hishel: init at 0.0.21

HTTP Cache implementation for HTTPX and HTTP Core

https://github.com/karpetrosyan/hishel
This commit is contained in:
Fabian Affolter 2024-01-22 10:07:44 +01:00
parent 6b1fd2a49b
commit ee6a01c985
2 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,74 @@
{ lib
, anysqlite
, buildPythonPackage
, fetchFromGitHub
, hatch-fancy-pypi-readme
, hatchling
, httpx
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, pyyaml
, redis
, trio
}:
buildPythonPackage rec {
pname = "hishel";
version = "0.0.21";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "karpetrosyan";
repo = "hishel";
rev = "refs/tags/${version}";
hash = "sha256-okNNYEq97qb2OoP3N+MvG7o3YADfd6LxP8EaNuWDGOM=";
};
nativeBuildInputs = [
hatch-fancy-pypi-readme
hatchling
];
propagatedBuildInputs = [
httpx
];
passthru.optional-dependencies = {
redis = [
redis
];
sqlite = [
anysqlite
];
yaml = [
pyyaml
];
};
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
trio
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
pythonImportsCheck = [
"hishel"
];
disabledTests = [
# Tests require a running Redis instance
"test_redis"
];
meta = with lib; {
description = "HTTP Cache implementation for HTTPX and HTTP Core";
homepage = "https://github.com/karpetrosyan/hishel";
changelog = "https://github.com/karpetrosyan/hishel/blob/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -5171,6 +5171,8 @@ self: super: with self; {
hiro = callPackage ../development/python-modules/hiro { };
hishel = callPackage ../development/python-modules/hishel { };
hist = callPackage ../development/python-modules/hist { };
histoprint = callPackage ../development/python-modules/histoprint { };