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

21 lines
541 B
Nix
Raw Normal View History

2018-10-05 21:46:26 +02:00
{ lib, buildPythonPackage, fetchPypi, numpy, pandas }:
buildPythonPackage rec {
pname = "histbook";
2018-11-11 14:47:25 +01:00
version = "1.2.5";
2018-10-05 21:46:26 +02:00
src = fetchPypi {
inherit pname version;
2018-11-11 14:47:25 +01:00
sha256 = "76d1f143f8abccf5539029fbef8133db84f377fc7752ac9e7e6d19ac9a277967";
2018-10-05 21:46:26 +02: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 ];
};
}