nixpkgs/pkgs/development/python-modules/awkward/default.nix

25 lines
553 B
Nix
Raw Normal View History

2018-10-25 15:25:48 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
}:
buildPythonPackage rec {
2018-11-20 10:58:35 +00:00
version = "0.4.4";
2018-10-25 15:25:48 +00:00
pname = "awkward";
src = fetchPypi {
inherit pname version;
2018-11-20 10:58:35 +00:00
sha256 = "08ce07d564e381e70dd38c6bf241fa303b09b408b02db648ff91f354f01e7439";
2018-10-25 15:25:48 +00:00
};
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 ];
};
}