From f2e02b281c3070f88e3d06a352d6f9688fd2ab57 Mon Sep 17 00:00:00 2001 From: locnide Date: Sun, 8 Mar 2026 15:46:07 +0100 Subject: [PATCH 1/2] python3Packages.hvplot: fix build by changing build system Build system has been changed to hatchling in hvplot 0.12. --- pkgs/development/python-modules/hvplot/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hvplot/default.nix b/pkgs/development/python-modules/hvplot/default.nix index 1b3fa147f489..2dd4ef7e7b55 100644 --- a/pkgs/development/python-modules/hvplot/default.nix +++ b/pkgs/development/python-modules/hvplot/default.nix @@ -4,7 +4,8 @@ fetchFromGitHub, # build-system - setuptools-scm, + hatch-vcs, + hatchling, # dependencies bokeh, @@ -37,7 +38,8 @@ buildPythonPackage rec { }; build-system = [ - setuptools-scm + hatch-vcs + hatchling ]; dependencies = [ From 8b549ee0fbf25cfbd0f89a69ddb36e736b048374 Mon Sep 17 00:00:00 2001 From: locnide Date: Sun, 8 Mar 2026 15:50:40 +0100 Subject: [PATCH 2/2] python3Packages.hvplot: add locnide as maintainer --- pkgs/development/python-modules/hvplot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/hvplot/default.nix b/pkgs/development/python-modules/hvplot/default.nix index 2dd4ef7e7b55..245ed3c6d893 100644 --- a/pkgs/development/python-modules/hvplot/default.nix +++ b/pkgs/development/python-modules/hvplot/default.nix @@ -96,6 +96,6 @@ buildPythonPackage rec { homepage = "https://hvplot.pyviz.org"; changelog = "https://github.com/holoviz/hvplot/releases/tag/${src.tag}"; license = lib.licenses.bsd3; - maintainers = [ ]; + maintainers = with lib.maintainers; [ locnide ]; }; }