Unverified Commit 0cfead9f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.recipe-scrapers: add optional-dependencies

parent bfc5cf38
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -29,17 +29,20 @@ buildPythonPackage rec {
    hash = "sha256-IAsa/GjTydKZq9Nh9MSVRb2DujICVQT38hMPTjzQyBw=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    beautifulsoup4
    extruct
    isodate
    language-tags
    regex
    requests
  ];

  optional-dependencies = {
    online = [ requests ];
  };

  nativeCheckInputs = [
    pytestCheckHook
    responses