pythonPackages.awkward: init at 0.3.0
This commit is contained in:
parent
6ce6637219
commit
a19b12e797
24
pkgs/development/python-modules/awkward/default.nix
Normal file
24
pkgs/development/python-modules/awkward/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, numpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.3.0";
|
||||
pname = "awkward";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "fc3080c66987f2a03aa9ba0809e51227eb7aa34198da4b1ee4deb95356409693";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/scikit-hep/awkward-array;
|
||||
description = "Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
@ -204,6 +204,8 @@ in {
|
||||
|
||||
automat = callPackage ../development/python-modules/automat { };
|
||||
|
||||
awkward = callPackage ../development/python-modules/awkward { };
|
||||
|
||||
aws-sam-translator = callPackage ../development/python-modules/aws-sam-translator { };
|
||||
|
||||
aws-xray-sdk = callPackage ../development/python-modules/aws-xray-sdk { };
|
||||
|
Loading…
Reference in New Issue
Block a user