Unverified Commit 046061dd authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #329735 from r-ryantm/auto-update/python312Packages.plotly

python312Packages.plotly: 5.22.0 -> 5.23.0
parents b772e94a 718bd3d7
Loading
Loading
Loading
Loading
+18 −10
Original line number Diff line number Diff line
@@ -2,29 +2,37 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  pytz,
  requests,
  six,
  setuptools,
  packaging,
  tenacity,
}:

buildPythonPackage rec {
  pname = "plotly";
  version = "5.22.0";
  format = "setuptools";
  version = "5.23.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-hZ/a29hrV3CuJGblQrdhskfRxrSdrtdluVu4xwY+dGk=";
    hash = "sha256-ieV9ADoRYwOjTeZwCGI5E2fdVkIiq3H4Ux33Ann8AZM=";
  };

  propagatedBuildInputs = [
    pytz
    requests
    six
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "\"jupyterlab~=3.0;python_version>='3.6'\"," ""
  '';

  env.SKIP_NPM = true;

  build-system = [ setuptools ];

  dependencies = [
    packaging
    tenacity
  ];

  pythonImportsCheck = [ "plotly" ];

  # No tests in archive
  doCheck = false;