depot/third_party/nixpkgs/pkgs/development/python-modules/histoprint/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

43 lines
729 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, click
, numpy
, setuptools
, setuptools-scm
, uhi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "histoprint";
version = "2.4.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "328f789d186e3bd76882d57b5aad3fa08c7870a856cc83bcdbad9f4aefbda94d";
};
buildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
click
numpy
uhi
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Pretty print histograms to the console";
homepage = "https://github.com/scikit-hep/histoprint";
license = licenses.mit;
maintainers = with maintainers; [ veprbl ];
};
}