datasette: 0.64.8 -> 0.65 (#349976)

This commit is contained in:
OTABI Tomoya 2024-10-30 10:30:33 +09:00 committed by GitHub
commit 9c89cc9825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,17 +6,19 @@
asgi-csrf,
click,
click-default-group,
flexcache,
flexparser,
httpx,
hupper,
itsdangerous,
janus,
jinja2,
hupper,
mergedeep,
pint,
platformdirs,
pluggy,
python-baseconv,
pyyaml,
typing-extensions,
uvicorn,
httpx,
pytestCheckHook,
pytest-asyncio,
pytest-timeout,
@ -30,8 +32,8 @@
buildPythonPackage rec {
pname = "datasette";
version = "0.64.8";
format = "setuptools";
version = "0.65";
pyproject = true;
disabled = pythonOlder "3.8";
@ -39,7 +41,7 @@ buildPythonPackage rec {
owner = "simonw";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-Nt/e0j1mF5Qkpp/dRa9W7En1WoGD2MsR3iREv9IQu5E=";
hash = "sha256-POdw2vB0D2B5SyrC/HkFqlsMlWtbdC3cRM/cfDhv7Z4=";
};
postPatch = ''
@ -47,23 +49,31 @@ buildPythonPackage rec {
--replace '"pytest-runner"' ""
'';
propagatedBuildInputs = [
build-system = [ setuptools ];
pythonRemoveDeps = [
"pip"
"setuptools"
];
dependencies = [
aiofiles
asgi-csrf
asgiref
click
click-default-group
flexcache
flexparser
httpx
hupper
itsdangerous
janus
jinja2
mergedeep
pint
platformdirs
pluggy
python-baseconv
pyyaml
setuptools
typing-extensions
uvicorn
];