Unverified Commit 483600eb authored by natsukium's avatar natsukium
Browse files

python312Packages.datasette: switch to pypa builder

parent e7c805c8
Loading
Loading
Loading
Loading
+19 −9
Original line number Diff line number Diff line
@@ -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,
@@ -31,7 +33,7 @@
buildPythonPackage rec {
  pname = "datasette";
  version = "0.65";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.8";

@@ -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
  ];