summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/awkward/default.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2020-12-07 14:03:15 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2020-12-07 14:03:55 +0100
commit7e9c3ff8bae88eb1e3ce3d6989a9c443bf969088 (patch)
treeb3276d2816670e9d5e881121d918d78bfa066634 /pkgs/development/python-modules/awkward/default.nix
parentpython37Packages.uproot{,3}-methods: 0.9.1 -> 0.10.0 (diff)
downloadnixpkgs-7e9c3ff8bae88eb1e3ce3d6989a9c443bf969088.tar.gz
pythonPackages.awkward{,0}: 0.14.0 -> 0.15.1
Diffstat (limited to 'pkgs/development/python-modules/awkward/default.nix')
-rw-r--r--pkgs/development/python-modules/awkward/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix
deleted file mode 100644
index 6a919c768c70..000000000000
--- a/pkgs/development/python-modules/awkward/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, numpy
-, pandas
-, pytestrunner
-, pytest
-, h5py
-}:
-
-buildPythonPackage rec {
- pname = "awkward";
- version = "0.14.0";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "6a3878f46e8bc2acf28a0b9feb69d354ad2fee2a2a0f65c48c115aa74f245204";
- };
-
- nativeBuildInputs = [ pytestrunner ];
- checkInputs = [ pandas pytest h5py ];
- propagatedBuildInputs = [ numpy ];
-
- checkPhase = ''
- py.test
- '';
-
- meta = with lib; {
- description = "Manipulate jagged, chunky, and/or bitmasked arrays as easily as Numpy";
- homepage = "https://github.com/scikit-hep/awkward-array";
- license = licenses.bsd3;
- maintainers = [ maintainers.costrouc ];
- };
-}