aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/uproot/default.nix
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-05 13:08:45 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-05 13:34:36 +0100
commit1435d45b4e0ab1ce19cfc97dbfb23b599e31f235 (patch)
tree35a945f8e65aea69d56392529c6b44ed2d5b5f1a /pkgs/development/python-modules/uproot/default.nix
parent654e6ecc680816149c4928147d15451adbcffe06 (diff)
python.pkgs.uproot: update checkInputs
Diffstat (limited to '')
-rw-r--r--pkgs/development/python-modules/uproot/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/uproot/default.nix b/pkgs/development/python-modules/uproot/default.nix
index 8718e9b30296..fdb465202beb 100644
--- a/pkgs/development/python-modules/uproot/default.nix
+++ b/pkgs/development/python-modules/uproot/default.nix
@@ -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 ];