From fa341312c5f59482c70cd2c01db4a9f9711a708c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 25 Jan 2025 09:30:55 +0100 Subject: [PATCH] python313Packages.dash-bootstrap-components: 1.6.0 -> 1.7.1 Changelog: https://github.com/facultyai/dash-bootstrap-components/releases/tag/1.7.1 --- .../python-modules/dash-bootstrap-components/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/dash-bootstrap-components/default.nix b/pkgs/development/python-modules/dash-bootstrap-components/default.nix index ce39e11af1f5..fa6b4b5c35f9 100644 --- a/pkgs/development/python-modules/dash-bootstrap-components/default.nix +++ b/pkgs/development/python-modules/dash-bootstrap-components/default.nix @@ -3,13 +3,13 @@ buildPythonPackage, fetchPypi, dash, - setuptools, + hatchling, pythonOlder, }: buildPythonPackage rec { pname = "dash-bootstrap-components"; - version = "1.6.0"; + version = "1.7.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -17,10 +17,10 @@ buildPythonPackage rec { src = fetchPypi { inherit version; pname = "dash_bootstrap_components"; - hash = "sha256-lgoeyTl1dHkvSagkECT6POzeD1kwyXGj/IHwFsvrEJU="; + hash = "sha256-MNSDQNbciYMdbAbkAM1CNvDVNjViwFsqki8hVFaVoII="; }; - build-system = [ setuptools ]; + build-system = [ hatchling ]; dependencies = [ dash ];