pythonPackages.awkward: 1.3.0 -> 1.4.0

This commit is contained in:
Dmitry Kalinkin 2021-07-11 10:25:56 -04:00
parent 15ddd8316a
commit 0a745f1ef7
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -5,20 +5,21 @@
, numba
, numpy
, pytestCheckHook
, pyyaml
, rapidjson
}:
buildPythonPackage rec {
pname = "awkward";
version = "1.3.0";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "b6021694adec9813842bad1987b837e439dabaf5b0dff9041201d238fca71fb4";
sha256 = "25ae6114d5962c717cb87e3bc30a2f6eaa232b252cf8c51ba805b8f04664ae0d";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ rapidjson ];
buildInputs = [ pyyaml rapidjson ];
propagatedBuildInputs = [ numpy ];
dontUseCmakeConfigure = true;