1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/uproot-methods/default.nix
2019-02-17 14:40:45 +01:00

26 lines
543 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, awkward
}:
buildPythonPackage rec {
version = "0.4.2";
pname = "uproot-methods";
src = fetchPypi {
inherit pname version;
sha256 = "dcb72692067cfc4c5ccfa859fe737b2cd47661692a0cc0b42c75d13dbb1eb040";
};
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 ];
};
}