From 5e4277d4c386654e68dad6dff45e82dc13628319 Mon Sep 17 00:00:00 2001 From: locnide Date: Sun, 8 Mar 2026 16:49:52 +0100 Subject: [PATCH 1/2] python3Packages.datashader: fix build The download_data.py file was causing the tests to fail by trying to download data. This file have been excluded from the test path. --- pkgs/development/python-modules/datashader/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/datashader/default.nix b/pkgs/development/python-modules/datashader/default.nix index 0ae4dce1fb7e..71fa33b6511c 100644 --- a/pkgs/development/python-modules/datashader/default.nix +++ b/pkgs/development/python-modules/datashader/default.nix @@ -59,6 +59,10 @@ buildPythonPackage rec { writableTmpDirAsHomeHook ]; + disabledTestPaths = [ + "scripts/download_data.py" + ]; + pythonImportsCheck = [ "datashader" ]; meta = { From 25cd5546734d90b1dddf290a4d1f9779ffab55c5 Mon Sep 17 00:00:00 2001 From: locnide Date: Sun, 8 Mar 2026 16:51:38 +0100 Subject: [PATCH 2/2] python3Packages.datashader: add locnide as maintainer --- pkgs/development/python-modules/datashader/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/datashader/default.nix b/pkgs/development/python-modules/datashader/default.nix index 71fa33b6511c..6c60062871df 100644 --- a/pkgs/development/python-modules/datashader/default.nix +++ b/pkgs/development/python-modules/datashader/default.nix @@ -71,6 +71,9 @@ buildPythonPackage rec { homepage = "https://datashader.org"; changelog = "https://github.com/holoviz/datashader/blob/${src.tag}/CHANGELOG.rst"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ nickcao ]; + maintainers = with lib.maintainers; [ + nickcao + locnide + ]; }; }