mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
75 lines
1.5 KiB
Nix
75 lines
1.5 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.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "karpetrosyan";
|
|
repo = "hishel";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-V8QiBnOz5l/vjTFf9gKjxth4YsGCYuADlbwiWc7VFds=";
|
|
};
|
|
|
|
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.flatten (builtins.attrValues 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 = 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 ];
|
|
};
|
|
}
|