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

23 lines
502 B
Nix
Raw Normal View History

2018-04-26 08:59:20 +01:00
{lib, fetchPypi, buildPythonPackage, numpy}:
buildPythonPackage rec {
pname = "uproot";
2018-08-13 08:34:21 +01:00
version = "2.9.11";
2018-04-26 08:59:20 +01:00
src = fetchPypi {
inherit pname version;
2018-08-13 08:34:21 +01:00
sha256 = "da71e9e239129ec2ae7a62f9d35aebd46456f05e000ef14f32fe2c9fa8ec92c2";
2018-04-26 08:59:20 +01: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 ];
};
}