python311Packages.hishel: 0.0.22 -> 0.0.24
Changelog: https://github.com/karpetrosyan/hishel/blob/0.0.24/CHANGELOG.md
This commit is contained in:
parent
b9b2eb52d6
commit
c3d62a3650
1 changed files with 8 additions and 2 deletions
|
@ -1,10 +1,12 @@
|
||||||
{ lib
|
{ lib
|
||||||
, anysqlite
|
, anysqlite
|
||||||
|
, boto3
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, hatch-fancy-pypi-readme
|
, hatch-fancy-pypi-readme
|
||||||
, hatchling
|
, hatchling
|
||||||
, httpx
|
, httpx
|
||||||
|
, moto
|
||||||
, pytest-asyncio
|
, pytest-asyncio
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
@ -15,7 +17,7 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "hishel";
|
pname = "hishel";
|
||||||
version = "0.0.22";
|
version = "0.0.24";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.8";
|
||||||
|
@ -24,7 +26,7 @@ buildPythonPackage rec {
|
||||||
owner = "karpetrosyan";
|
owner = "karpetrosyan";
|
||||||
repo = "hishel";
|
repo = "hishel";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-2GboU1J0jvZUz20+KpDYnfDqc+qi0tmlypbWeOoYjX0=";
|
hash = "sha256-wup1rQ5MHjsBaTdfueP9y7QhutoO0xYeexZPDQpUEJk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -40,6 +42,9 @@ buildPythonPackage rec {
|
||||||
redis = [
|
redis = [
|
||||||
redis
|
redis
|
||||||
];
|
];
|
||||||
|
s3 = [
|
||||||
|
boto3
|
||||||
|
];
|
||||||
sqlite = [
|
sqlite = [
|
||||||
anysqlite
|
anysqlite
|
||||||
];
|
];
|
||||||
|
@ -49,6 +54,7 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
|
moto
|
||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
trio
|
trio
|
||||||
|
|
Loading…
Reference in a new issue