nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python.pkgs.uproot: update checkInputs

(cherry picked from commit 1435d45b4e0ab1ce19cfc97dbfb23b599e31f235)

+4 -2
+4 -2
pkgs/development/python-modules/uproot/default.nix
··· 10 10 , pytest 11 11 , pkgconfig 12 12 , lz4 13 + , mock 14 + , requests 13 15 , backports_lzma 14 16 }: 15 17 ··· 24 22 sha256 = "1fafe476c26252e4dbd399456323778e76d23dc2f43cf6581a707d1647978610"; 25 23 }; 26 24 27 - buildInputs = [ pytestrunner ]; 28 - checkInputs = [ pytest pkgconfig lz4 ] 25 + nativeBuildInputs = [ pytestrunner ]; 26 + checkInputs = [ pytest pkgconfig lz4 mock requests ] 29 27 ++ lib.optionals (pythonOlder "3.3") [ backports_lzma ]; 30 28 propagatedBuildInputs = [ numpy cachetools uproot-methods awkward ]; 31 29