nixpkgs/pkgs/development/python-modules/uproot/default.nix

23 lines
502 B
Nix
Raw Normal View History

2018-04-26 10:59:20 +03:00
{lib, fetchPypi, buildPythonPackage, numpy}:
buildPythonPackage rec {
pname = "uproot";
2018-06-12 19:47:08 +03:00
version = "2.8.31";
2018-04-26 10:59:20 +03:00
src = fetchPypi {
inherit pname version;
2018-06-12 19:47:08 +03:00
sha256 = "e67aa4e666692c05e308fbd169b9bcfa82bc7af561a0e207f1bde0c9da2f0a29";
2018-04-26 10:59:20 +03:00
};
propagatedBuildInputs = [
numpy
];
meta = with lib; {
homepage = https://github.com/scikit-hep/uproot;
description = "ROOT I/O in pure Python and Numpy";
license = licenses.bsd3;
maintainers = with maintainers; [ ktf ];
};
}