pythonPackages.awkward1: init at 0.1.28
This commit is contained in:
parent
7b5194aee9
commit
cc2334849f
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 ];
|
||||
};
|
||||
}
|
@ -225,6 +225,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…
x
Reference in New Issue
Block a user