1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/development/python-modules/hist/default.nix
2024-06-10 16:54:33 -04:00

52 lines
927 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
boost-histogram,
histoprint,
hatchling,
hatch-vcs,
numpy,
pytestCheckHook,
pytest-mpl,
pythonOlder,
}:
buildPythonPackage rec {
pname = "hist";
version = "2.7.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-+fm1aAmxkLtUZph4nMDX0ECTT8UUHSdjxuSdZegdvAs=";
};
buildInputs = [
hatchling
hatch-vcs
];
propagatedBuildInputs = [
boost-histogram
histoprint
numpy
];
checkInputs = [
pytestCheckHook
pytest-mpl
];
meta = with lib; {
description = "Histogramming for analysis powered by boost-histogram";
mainProgram = "hist";
homepage = "https://hist.readthedocs.io/";
changelog = "https://github.com/scikit-hep/hist/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ veprbl ];
};
}