summary refs log tree commit diff
path: root/pkgs/development/python-modules/histbook/default.nix
blob: c9ea7010a6f053ca1a5085168feb09780df2ac30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, numpy, pandas }:

buildPythonPackage rec {
  pname = "histbook";
  version = "1.2.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "76d1f143f8abccf5539029fbef8133db84f377fc7752ac9e7e6d19ac9a277967";
  };

  propagatedBuildInputs = [ numpy pandas ];

  meta = with lib; {
    homepage = https://github.com/scikit-hep/histbook;
    description = "Versatile, high-performance histogram toolkit for Numpy";
    license = licenses.bsd3;
    maintainers = with maintainers; [ veprbl ];
  };
}