{ lib , fetchPypi , buildPythonPackage , hatchling , hatch-vcs , numpy , pytestCheckHook }: buildPythonPackage rec { pname = "uhi"; version = "0.4.0"; format = "pyproject"; src = fetchPypi { inherit pname version; sha256 = "sha256-DctrGXdQh9OKMe44jLLHDy7P4ExP/iymMiNBDK5b7vo="; }; buildInputs = [ hatchling hatch-vcs ]; propagatedBuildInputs = [ numpy ]; checkInputs = [ pytestCheckHook ]; meta = with lib; { description = "Universal Histogram Interface"; homepage = "https://uhi.readthedocs.io/"; license = licenses.bsd3; maintainers = with maintainers; [ veprbl ]; }; }