aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/awkward1
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2020-04-19 14:57:25 +0200
committerKatharina Fey <kookie@spacekookie.de>2020-04-19 14:57:25 +0200
commit0ca211d4ec600fa7b3cc701e4997cd1e8d38ebdc (patch)
tree4f9b09ca5d55e44710f020bcf6621daa4fd6b73a /nixpkgs/pkgs/development/python-modules/awkward1
parent1c2ef52230ed2c8b2529c47ce6a857bdde46c7c7 (diff)
parentb61999e4ad60c351b4da63ae3ff43aae3c0bbdfb (diff)
Merge commit 'b61999e4ad60c351b4da63ae3ff43aae3c0bbdfb'
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/awkward1')
-rw-r--r--nixpkgs/pkgs/development/python-modules/awkward1/default.nix14
1 files changed, 6 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/awkward1/default.nix b/nixpkgs/pkgs/development/python-modules/awkward1/default.nix
index a35a97c5e02..ce0d5e747c0 100644
--- a/nixpkgs/pkgs/development/python-modules/awkward1/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/awkward1/default.nix
@@ -4,17 +4,17 @@
, cmake
, numba
, numpy
-, pytest
+, pytestCheckHook
, rapidjson
}:
buildPythonPackage rec {
pname = "awkward1";
- version = "0.1.38";
+ version = "0.2.12";
src = fetchPypi {
inherit pname version;
- sha256 = "1c87defa8c1661ffe36f8a785fa9a60ae3b70484984a935e710cd8cb1f763fd7";
+ sha256 = "a87d89c218151d840c032be4cba6801801683ea00e91dc17fd7bc527ad8eb09b";
};
nativeBuildInputs = [ cmake ];
@@ -23,13 +23,11 @@ buildPythonPackage rec {
dontUseCmakeConfigure = true;
- checkInputs = [ pytest numba ];
- checkPhase = ''
- py.test
- '';
+ checkInputs = [ pytestCheckHook numba ];
+ dontUseSetuptoolsCheck = true;
meta = with lib; {
- description = "Development of awkward 1.0, to replace scikit-hep/awkward-array in 2020";
+ description = "Manipulate JSON-like data with NumPy-like idioms";
homepage = "https://github.com/scikit-hep/awkward-1.0";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];