Merge pull request #73212 from veprbl/pr/awkward1_init
pythonPackages.awkward1: init at 0.1.28
This commit is contained in:
commit
8a084180cd
2 changed files with 38 additions and 0 deletions
37
pkgs/development/python-modules/awkward1/default.nix
Normal file
37
pkgs/development/python-modules/awkward1/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue