Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a7bd722ec807
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5c72e8416984
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Apr 11, 2020

  1. Copy the full SHA
    ab1c67e View commit details
  2. Copy the full SHA
    5c72e84 View commit details
Showing with 6 additions and 8 deletions.
  1. +6 −8 pkgs/development/python-modules/awkward1/default.nix
14 changes: 6 additions & 8 deletions pkgs/development/python-modules/awkward1/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];