python.pkgs.uproot: update checkInputs

This commit is contained in:
Robert Schütz 2019-03-05 13:08:45 +01:00
parent 654e6ecc68
commit 1435d45b4e

View File

@ -10,6 +10,8 @@
, pytest
, pkgconfig
, lz4
, mock
, requests
, backports_lzma
}:
@ -22,8 +24,8 @@ buildPythonPackage rec {
sha256 = "1fafe476c26252e4dbd399456323778e76d23dc2f43cf6581a707d1647978610";
};
buildInputs = [ pytestrunner ];
checkInputs = [ pytest pkgconfig lz4 ]
nativeBuildInputs = [ pytestrunner ];
checkInputs = [ pytest pkgconfig lz4 mock requests ]
++ lib.optionals (pythonOlder "3.3") [ backports_lzma ];
propagatedBuildInputs = [ numpy cachetools uproot-methods awkward ];