3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/uproot-methods/default.nix

26 lines
543 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, awkward
}:
buildPythonPackage rec {
2019-02-23 14:36:02 +00:00
version = "0.4.3";
pname = "uproot-methods";
src = fetchPypi {
inherit pname version;
2019-02-23 14:36:02 +00:00
sha256 = "f90d91a613a875ebdf214f0f6f3fd0f8beea9125fc35e54f334d6104fe47c87d";
};
propagatedBuildInputs = [ numpy awkward ];
meta = with stdenv.lib; {
homepage = https://github.com/scikit-hep/uproot-methods;
description = "Pythonic mix-ins for ROOT classes";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}