summary refs log tree commit diff
path: root/pkgs/development/python-modules/uproot/default.nix
blob: 81a6cf99da0b4d4b51bf9e8fb7af21582a3a7bcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ lib
, fetchFromGitHub
, buildPythonPackage
, awkward
, numpy
, lz4
, setuptools
, xxhash
, zstandard
, pytestCheckHook
, scikit-hep-testdata
}:

buildPythonPackage rec {
  pname = "uproot";
  version = "4.3.5";

  # fetch from github for tests
  src = fetchFromGitHub {
    owner = "scikit-hep";
    repo = "uproot4";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-oAL4FjrNNm7xCQq275pnY/UjfAxRWgLgYBS/lCq+uwE=";
  };

  propagatedBuildInputs = [
    awkward
    numpy
    lz4
    setuptools
    xxhash
    zstandard
  ];

  checkInputs = [
    pytestCheckHook
    scikit-hep-testdata
  ];
  preCheck = ''
    export HOME="$(mktemp -d)"
  '';
  disabledTests = [
    # tests that try to download files
    "test_http"
    "test_no_multipart"
    "test_fallback"
    "test_pickle_roundtrip_http"
  ];
  disabledTestPaths = [
    # tests that try to download files
    "tests/test_0066-fix-http-fallback-freeze.py"
    "tests/test_0088-read-with-http.py"
    "tests/test_0220-contiguous-byte-ranges-in-http.py"
  ];
  pythonImportsCheck = [ "uproot" ];

  meta = with lib; {
    homepage = "https://github.com/scikit-hep/uproot5";
    description = "ROOT I/O in pure Python and Numpy";
    license = licenses.bsd3;
    maintainers = with maintainers; [ veprbl ];
  };
}