summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-09-07 23:43:03 +0100
committerGitHub <noreply@github.com>2022-09-07 23:43:03 +0100
commite45ccc42801a12cfd2df1f03ab4bda730d52923c (patch)
tree8a307df0713db164d99c73aea149a12712602e76
parentc27e7255b8907b54ff6ddb6423110e2ea0139414 (diff)
parentd74a6bf2f71d4f11476b309999437a783e46e44a (diff)
Merge pull request #190150 from bcdarwin/unbreak-python3-nilearn
python3Packages.nilearn: add missing lxml dep
-rw-r--r--pkgs/development/python-modules/nilearn/default.nix3
1 files changed, 2 insertions, 1 deletions
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