From d74a6bf2f71d4f11476b309999437a783e46e44a Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Wed, 7 Sep 2022 12:17:55 -0400 Subject: [PATCH] python3Packages.nilearn: add missing lxml dep --- pkgs/development/python-modules/nilearn/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/nilearn/default.nix b/pkgs/development/python-modules/nilearn/default.nix index 121b204d5c32..85df64f20933 100644 --- a/pkgs/development/python-modules/nilearn/default.nix +++ b/pkgs/development/python-modules/nilearn/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, matplotlib +{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, lxml, matplotlib , nibabel, numpy, pandas, scikit-learn, scipy, joblib, requests }: buildPythonPackage rec { @@ -17,6 +17,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ joblib + lxml matplotlib nibabel numpy