Unverified Commit 46ca68c2 authored by Michael Daniels's avatar Michael Daniels Committed by GitHub
Browse files

python3Packages.inscriptis: fix build-system (#493722)

parents 633c23ed 45795ef3
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -2,11 +2,12 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  poetry-core,
  hatchling,
  lxml,
  fastapi,
  httpx,
  pytestCheckHook,
  pytest-cov-stub,
  requests,
}:

@@ -22,7 +23,7 @@ buildPythonPackage rec {
    hash = "sha256-m1LZiGu79I9fMQXtL1MuzHxUd6KSwuc87Edkt9sp0DE=";
  };

  build-system = [ poetry-core ];
  build-system = [ hatchling ];

  dependencies = [
    lxml
@@ -33,8 +34,11 @@ buildPythonPackage rec {
    fastapi
    httpx
    pytestCheckHook
    pytest-cov-stub
  ];

  pythonRelaxDeps = [ "lxml" ];

  pythonImportsCheck = [ "inscriptis" ];

  meta = {