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

21 lines
541 B
Nix
Raw Normal View History

2018-10-05 19:46:26 +00:00
{ lib, buildPythonPackage, fetchPypi, numpy, pandas }:
buildPythonPackage rec {
pname = "histbook";
2018-11-04 10:35:01 +00:00
version = "1.2.4";
2018-10-05 19:46:26 +00:00
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:01 +00:00
sha256 = "864b2943005d6be0c889504c6e1090fea2036c9557837e06ca83d06590037c49";
2018-10-05 19:46:26 +00:00
};
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 ];
};
}