about summary refs log tree commit diff
path: root/pkgs/development/python-modules/xarray
diff options
context:
space:
mode:
authorJosh Holland <josh@inv.alid.pw>2020-07-09 12:12:49 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-07-09 14:21:36 +0200
commita96c2a3c3ae3235307a536b57326c6a973b4cc9b (patch)
tree3dcb70cf5dc810bcfd84dd6267d975284894423e /pkgs/development/python-modules/xarray
parent7888f8c4517abaa4ffd4f889467570e36d35e341 (diff)
python3Packages.xarray: add setuptools to propagatedBuildInputs
This package has been required since 0.15.1.
Diffstat (limited to 'pkgs/development/python-modules/xarray')
-rw-r--r--pkgs/development/python-modules/xarray/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/xarray/default.nix b/pkgs/development/python-modules/xarray/default.nix
index abce8ac12fe7e..e04fa770e450f 100644
--- a/pkgs/development/python-modules/xarray/default.nix
+++ b/pkgs/development/python-modules/xarray/default.nix
@@ -5,6 +5,7 @@
 , numpy
 , pandas
 , python
+, setuptools
 , isPy3k
 }:
 
@@ -18,7 +19,7 @@ buildPythonPackage rec {
   };
 
   checkInputs = [ pytest ];
-  propagatedBuildInputs = [numpy pandas];
+  propagatedBuildInputs = [ numpy pandas setuptools ];
 
   checkPhase = ''
     pytest $out/${python.sitePackages}