Skip to content

Commit

Permalink
Merge pull request NixOS#303687 from r-ryantm/auto-update/python312Pa…
Browse files Browse the repository at this point in the history
…ckages.hishel

python312Packages.hishel: 0.0.25 -> 0.0.26
  • Loading branch information
fabaff authored Apr 14, 2024
2 parents 038cdc9 + cb99251 commit b230780
Showing 1 changed file with 22 additions and 34 deletions.
56 changes: 22 additions & 34 deletions pkgs/development/python-modules/hishel/default.nix
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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 = [
Expand All @@ -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
Expand All @@ -83,4 +72,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit b230780

Please sign in to comment.