python313Packages.dash-bootstrap-components: 1.6.0 -> 1.7.1 (#376611)

This commit is contained in:
Fabian Affolter 2025-01-25 14:34:04 +01:00 committed by GitHub
commit 93641a27b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];