Files
nixpkgs/pkgs/development/python-modules/hishel/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

76 lines
1.4 KiB
Nix

{
lib,
anysqlite,
boto3,
buildPythonPackage,
fetchFromGitHub,
hatch-fancy-pypi-readme,
hatchling,
httpx,
moto,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
pyyaml,
redis,
trio,
}:
buildPythonPackage rec {
pname = "hishel";
version = "0.1.3";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "karpetrosyan";
repo = "hishel";
tag = version;
hash = "sha256-3dcXj9MPPtHBzafdccrOeh+Wrn9hulDA8L3itOe8ZXw=";
};
build-system = [
hatch-fancy-pypi-readme
hatchling
];
dependencies = [ httpx ];
optional-dependencies = {
redis = [ redis ];
s3 = [ boto3 ];
sqlite = [ anysqlite ];
yaml = [ pyyaml ];
};
nativeCheckInputs = [
moto
pytest-asyncio
pytestCheckHook
trio
]
++ lib.concatAttrValues optional-dependencies;
pythonImportsCheck = [ "hishel" ];
disabledTests = [
# Tests require a running Redis instance
"test_redis"
];
disabledTestPaths = [
# ImportError: cannot import name 'mock_s3' from 'moto'
"tests/_async/test_storages.py"
"tests/_sync/test_storages.py"
];
meta = {
description = "HTTP Cache implementation for HTTPX and HTTP Core";
homepage = "https://github.com/karpetrosyan/hishel";
changelog = "https://github.com/karpetrosyan/hishel/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
};
}