pythonPackages.histbook: init at 1.2.3

This commit is contained in:
Dmitry Kalinkin 2018-10-05 15:46:26 -04:00 committed by Frederik Rietdijk
parent fd9d45c7c1
commit fcbec42fc8
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi, numpy, pandas }:
buildPythonPackage rec {
pname = "histbook";
version = "1.2.3";
src = fetchPypi {
inherit pname version;
sha256 = "12d5l4c5pxwac5hzcfif51j87qjljm0w9nd0c8pnhj7q2snap4x4";
};
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 ];
};
}

View File

@ -356,6 +356,8 @@ in {
habanero = callPackage ../development/python-modules/habanero { };
histbook = callPackage ../development/python-modules/histbook { };
httpsig = callPackage ../development/python-modules/httpsig { };
i3ipc = callPackage ../development/python-modules/i3ipc { };