Merge pull request #117229 from dotlambda/xarray-fix

[staging-next] python3Packages.xarray: fix build
This commit is contained in:
Sandro 2021-03-23 02:17:11 +01:00 committed by GitHub
commit 67567819b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,7 @@
, pandas
, setuptools
, isPy3k
, setuptools-scm
}:
buildPythonPackage rec {
@ -18,6 +19,7 @@ buildPythonPackage rec {
sha256 = "sha256-OOhDnWyRvNW3wPyjSdr44GQ6xohQyYcmLVNSbp19AeQ=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ numpy pandas setuptools ];
checkInputs = [ pytestCheckHook ];