python3.pkgs.xarray: add missing packaging dependency

It's present during installation as it's propagated by the tools, but we
still need it at runtime.
This commit is contained in:
Frederik Rietdijk
2022-07-05 11:14:54 +02:00
committed by Frederik Rietdijk
parent 826c20dcae
commit fd92b92827
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, numpy
, packaging
, pandas
, pytestCheckHook
, pythonOlder
@@ -30,6 +31,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
numpy
packaging
pandas
];