pythonPackages.awkward: 0.4.5 -> 1.0.1, awkward1 -> awkward

This commit is contained in:
Dmitry Kalinkin
2020-12-17 12:35:40 -05:00
parent 5a6265ad6b
commit 0b5dcf00a9
2 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, cmake
, numba
, numpy
, pytestCheckHook
, rapidjson
}:
buildPythonPackage rec {
pname = "awkward";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "d856b4a166ae054363368aed2e4a44338fec069baa4242e7d567c8323ebcc1eb";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ rapidjson ];
propagatedBuildInputs = [ numpy ];
dontUseCmakeConfigure = true;
checkInputs = [ pytestCheckHook numba ];
dontUseSetuptoolsCheck = true;
meta = with lib; {
description = "Manipulate JSON-like data with NumPy-like idioms";
homepage = "https://github.com/scikit-hep/awkward-1.0";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
};
}