Merge pull request #73212 from veprbl/pr/awkward1_init

pythonPackages.awkward1: init at 0.1.28
This commit is contained in:
Dmitry Kalinkin 2019-12-07 21:48:31 -05:00 committed by GitHub
commit 8a084180cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -227,6 +227,7 @@ in {
automat = callPackage ../development/python-modules/automat { };
awkward = callPackage ../development/python-modules/awkward { };
awkward1 = callPackage ../development/python-modules/awkward1 { };
aws-sam-translator = callPackage ../development/python-modules/aws-sam-translator { };