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

python312Packages.hishel: 0.0.25 -> 0.0.26

authored by Fabian Affolter and committed by GitHub b2307803 038cdc99

+22 -34
+22 -34
pkgs/development/python-modules/hishel/default.nix
··· 1 - { lib 2 - , anysqlite 3 - , boto3 4 - , buildPythonPackage 5 - , fetchFromGitHub 6 - , hatch-fancy-pypi-readme 7 - , hatchling 8 - , httpx 9 - , moto 10 - , pytest-asyncio 11 - , pytestCheckHook 12 - , pythonOlder 13 - , pyyaml 14 - , redis 15 - , trio 1 + { 2 + lib, 3 + anysqlite, 4 + boto3, 5 + buildPythonPackage, 6 + fetchFromGitHub, 7 + hatch-fancy-pypi-readme, 8 + hatchling, 9 + httpx, 10 + moto, 11 + pytest-asyncio, 12 + pytestCheckHook, 13 + pythonOlder, 14 + pyyaml, 15 + redis, 16 + trio, 16 17 }: 17 18 18 19 buildPythonPackage rec { ··· 34 35 hatchling 35 36 ]; 36 37 37 - dependencies = [ 38 - httpx 39 - ]; 38 + dependencies = [ httpx ]; 40 39 41 40 passthru.optional-dependencies = { 42 - redis = [ 43 - redis 44 - ]; 45 - s3 = [ 46 - boto3 47 - ]; 48 - sqlite = [ 49 - anysqlite 50 - ]; 51 - yaml = [ 52 - pyyaml 53 - ]; 41 + redis = [ redis ]; 42 + s3 = [ boto3 ]; 43 + sqlite = [ anysqlite ]; 44 + yaml = [ pyyaml ]; 54 45 }; 55 46 56 47 nativeCheckInputs = [ ··· 60 51 trio 61 52 ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 62 53 63 - pythonImportsCheck = [ 64 - "hishel" 65 - ]; 54 + pythonImportsCheck = [ "hishel" ]; 66 55 67 56 disabledTests = [ 68 57 # Tests require a running Redis instance ··· 83 72 maintainers = with maintainers; [ fab ]; 84 73 }; 85 74 } 86 -