summary refs log tree commit diff
path: root/pkgs/development/python-modules/awkward1/default.nix
blob: 6b515b56713a9d96f38752a7b52e85dae9fa82df (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.28";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2269aca04c827549435e24f9976d27e904d02b74a30caa9a2a463225a8ba1609";
  };

  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 ];
  };
}