summary refs log tree commit diff
path: root/pkgs/development/python-modules/awkward1/default.nix
blob: a35a97c5e024cceb90095d4e005a63d6c99df2f9 (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
{ lib
, buildPythonPackage
, fetchPypi
, cmake
, numba
, numpy
, pytest
, rapidjson
}:

buildPythonPackage rec {
  pname = "awkward1";
  version = "0.1.38";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1c87defa8c1661ffe36f8a785fa9a60ae3b70484984a935e710cd8cb1f763fd7";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ rapidjson ];
  propagatedBuildInputs = [ numpy ];

  dontUseCmakeConfigure = true;

  checkInputs = [ pytest numba ];
  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    description = "Development of awkward 1.0, to replace scikit-hep/awkward-array in 2020";
    homepage = "https://github.com/scikit-hep/awkward-1.0";
    license = licenses.bsd3;
    maintainers = with maintainers; [ veprbl ];
  };
}