Unverified Commit 540c5245 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

python3Packages.chart-studio: drop (#499327)

parents ff195efa 677979ee
Loading
Loading
Loading
Loading
+0 −54
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  mock,
  plotly,
  requests,
  retrying,
  setuptools,
  pytestCheckHook,
}:

buildPythonPackage {
  pname = "chart-studio";
  version = "1.1.0-unstable-2025-01-30";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "plotly";
    repo = "chart-studio";
    rev = "44c7c43be0fe7e031ec281c86ee7dae0efa0619e";
    hash = "sha256-RekcZzUcunIqXOSriW+RvpLdvATQWTeRAiR8LFodfQg=";
  };

  build-system = [ setuptools ];

  dependencies = [
    plotly
    requests
    retrying
  ];

  nativeCheckInputs = [
    mock
    plotly
    pytestCheckHook
  ];

  preCheck = ''
    export HOME=$(mktemp -d)
  '';

  # most tests talk to a network service, so only run ones that don't do that.
  enabledTestPaths = [
    "chart_studio/tests/test_core"
  ];

  meta = {
    description = "Utilities for interfacing with Plotly's Chart Studio service";
    homepage = "https://github.com/plotly/chart-studio";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ sarahec ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -123,6 +123,7 @@ mapAliases {
  casbin = pycasbin; # added 2025-06-12
  cchardet = throw "'cchardet' has been renamed to/replaced by 'faust-cchardet'"; # Converted to throw 2025-10-29
  characteristic = throw "'characteristic' has been removed because it is no longer maintained upstream"; # Added 2026-01-14
  chart-studio = throw "'chart-studio' has been removed as it is no longer maintained upstream"; # Added 2026-03-12
  cirq-rigetti = throw "cirq-rigetti was removed because it is no longer provided by upstream"; # added 2025-09-13
  class-registry = throw "'class-registry' has been renamed to/replaced by 'phx-class-registry'"; # Converted to throw 2025-10-29
  ColanderAlchemy = throw "'ColanderAlchemy' has been renamed to/replaced by 'colanderalchemy'"; # Converted to throw 2025-10-29
+0 −2
Original line number Diff line number Diff line
@@ -2667,8 +2667,6 @@ self: super: with self; {
  charset-normalizer = callPackage ../development/python-modules/charset-normalizer { };
  chart-studio = callPackage ../development/python-modules/chart-studio { };
  chat-downloader = callPackage ../development/python-modules/chat-downloader { };
  chatlas = callPackage ../development/python-modules/chatlas { };