Merge pull request #303687 from r-ryantm/auto-update/python312Packages.hishel

python312Packages.hishel: 0.0.25 -> 0.0.26
This commit is contained in:
Fabian Affolter 2024-04-14 14:41:54 +02:00 committed by GitHub
commit b23078031f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,19 @@
{ lib
, anysqlite
, boto3
, buildPythonPackage
, fetchFromGitHub
, hatch-fancy-pypi-readme
, hatchling
, httpx
, moto
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, pyyaml
, redis
, trio
{
lib,
anysqlite,
boto3,
buildPythonPackage,
fetchFromGitHub,
hatch-fancy-pypi-readme,
hatchling,
httpx,
moto,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
pyyaml,
redis,
trio,
}:
buildPythonPackage rec {
@ -34,23 +35,13 @@ buildPythonPackage rec {
hatchling
];
dependencies = [
httpx
];
dependencies = [ httpx ];
passthru.optional-dependencies = {
redis = [
redis
];
s3 = [
boto3
];
sqlite = [
anysqlite
];
yaml = [
pyyaml
];
redis = [ redis ];
s3 = [ boto3 ];
sqlite = [ anysqlite ];
yaml = [ pyyaml ];
};
nativeCheckInputs = [
@ -60,9 +51,7 @@ buildPythonPackage rec {
trio
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
pythonImportsCheck = [
"hishel"
];
pythonImportsCheck = [ "hishel" ];
disabledTests = [
# Tests require a running Redis instance
@ -83,4 +72,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ fab ];
};
}