From 47ad667debf16904322f4a35e93ed506ed4866ed Mon Sep 17 00:00:00 2001 From: Pyrox Date: Fri, 26 Jul 2024 15:11:15 -0400 Subject: [PATCH] python312Packages.chart-studio: Modernize --- pkgs/development/python-modules/chart-studio/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/chart-studio/default.nix b/pkgs/development/python-modules/chart-studio/default.nix index da3f85f58ddc..e3affbee36d3 100644 --- a/pkgs/development/python-modules/chart-studio/default.nix +++ b/pkgs/development/python-modules/chart-studio/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { sourceRoot = "${src.name}/packages/python/chart-studio"; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ plotly requests retrying @@ -51,10 +51,10 @@ buildPythonPackage rec { "chart_studio/tests/test_plot_ly/test_api" ]; - meta = with lib; { + meta = { description = "Utilities for interfacing with Plotly's Chart Studio service"; homepage = "https://github.com/plotly/plotly.py/tree/master/packages/python/chart-studio"; - license = with licenses; [ mit ]; + license = with lib.licenses; [ mit ]; maintainers = [ ]; }; }