From eb22903418cc8c5525ffeefcc09669ccbd1a4b15 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 18 Jun 2025 10:06:05 +0000 Subject: [PATCH 1/2] python3Packages.dash-bootstrap-templates: 1.3.0 -> 2.1.0 --- .../python-modules/dash-bootstrap-templates/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/dash-bootstrap-templates/default.nix b/pkgs/development/python-modules/dash-bootstrap-templates/default.nix index 29457bf57494..416db04809a8 100644 --- a/pkgs/development/python-modules/dash-bootstrap-templates/default.nix +++ b/pkgs/development/python-modules/dash-bootstrap-templates/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "dash-bootstrap-templates"; - version = "1.3.0"; + version = "2.1.0"; pyproject = true; src = fetchFromGitHub { owner = "AnnMarieW"; repo = "dash-bootstrap-templates"; - rev = "V${version}"; - hash = "sha256-dbXqqncxfIZ6traVQ2a/2E1Co4MVdoiU8ox6nBnqviE="; + tag = "V${version}"; + hash = "sha256-B7iyN4sJA6DmoLf3DpFEONDe5tUd4cBlDIH4E7JtULk="; }; build-system = [ setuptools @@ -39,7 +39,7 @@ buildPythonPackage rec { meta = { description = "A collection of 52 Plotly figure templates with a Bootstrap theme"; homepage = "https://github.com/AnnMarieW/dash-bootstrap-templates"; - changelog = "https://github.com/AnnMarieW/dash-bootstrap-templates/releases/tag/V${version}"; + changelog = "https://github.com/AnnMarieW/dash-bootstrap-templates/releases/tag/V${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ flokli ]; }; From 810876cb484637e6d586375b494f90b552345090 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 18 Jun 2025 17:45:42 +0300 Subject: [PATCH 2/2] dash-bootstrap-templates: fix changelog link Reported in https://github.com/nix-community/nixpkgs-update/issues/478 --- .../python-modules/dash-bootstrap-templates/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dash-bootstrap-templates/default.nix b/pkgs/development/python-modules/dash-bootstrap-templates/default.nix index 416db04809a8..dd79408c18b5 100644 --- a/pkgs/development/python-modules/dash-bootstrap-templates/default.nix +++ b/pkgs/development/python-modules/dash-bootstrap-templates/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { meta = { description = "A collection of 52 Plotly figure templates with a Bootstrap theme"; homepage = "https://github.com/AnnMarieW/dash-bootstrap-templates"; - changelog = "https://github.com/AnnMarieW/dash-bootstrap-templates/releases/tag/V${src.tag}"; + changelog = "https://github.com/AnnMarieW/dash-bootstrap-templates/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ flokli ]; };