python310Packages.datasette: 0.61.1 -> 0.63

This commit is contained in:
Fabian Affolter 2022-10-29 18:48:00 +02:00
parent 3a759f3b61
commit c3ac6ea4ba

View File

@ -16,7 +16,6 @@
, pyyaml , pyyaml
, uvicorn , uvicorn
, httpx , httpx
# Check Inputs
, pytestCheckHook , pytestCheckHook
, pytest-asyncio , pytest-asyncio
, pytest-timeout , pytest-timeout
@ -30,7 +29,8 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "datasette"; pname = "datasette";
version = "0.61.1"; version = "0.63";
format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -38,18 +38,13 @@ buildPythonPackage rec {
owner = "simonw"; owner = "simonw";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-HVzMyF4ujYK12UQ25il/XROPo+iBldsMxOTx+duoc5o="; sha256 = "sha256-kzehFvGSmGo2TAtiNZCjRVv/kaiE+shniNnD0gO58b4=";
}; };
postPatch = '' postPatch = ''
substituteInPlace setup.py \ substituteInPlace setup.py \
--replace '"pytest-runner"' "" \ --replace '"pytest-runner"' "" \
--replace "click>=7.1.1,<8.1.0" "click>=7.1.1,<8.2.0" \ --replace "click-default-group-wheel>=1.2.2" "click-default-group"
--replace "click-default-group~=1.2.2" "click-default-group" \
--replace "hupper~=1.9" "hupper" \
--replace "Jinja2>=2.10.3,<3.1.0" "Jinja2" \
--replace "pint~=0.9" "pint" \
--replace "uvicorn~=0.11" "uvicorn"
''; '';
propagatedBuildInputs = [ propagatedBuildInputs = [