1{ lib, buildPythonPackage, fetchPypi, numpy, pandas }:
2
3buildPythonPackage rec {
4 pname = "histbook";
5 version = "1.2.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "76d1f143f8abccf5539029fbef8133db84f377fc7752ac9e7e6d19ac9a277967";
10 };
11
12 propagatedBuildInputs = [ numpy pandas ];
13
14 meta = with lib; {
15 homepage = https://github.com/scikit-hep/histbook;
16 description = "Versatile, high-performance histogram toolkit for Numpy";
17 license = licenses.bsd3;
18 maintainers = with maintainers; [ veprbl ];
19 };
20}