python310Packages.histoprint: init at 2.4.0

This commit is contained in:
Dmitry Kalinkin
2023-02-13 01:49:47 -05:00
parent d4b39b8569
commit 0fe08544fc
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{ 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
];
SETUPTOOLS_SCM_PRETEND_VERSION = version;
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 ];
};
}
+2
View File
@@ -4338,6 +4338,8 @@ self: super: with self; {
hiro = callPackage ../development/python-modules/hiro { };
histoprint = callPackage ../development/python-modules/histoprint { };
hiyapyco = callPackage ../development/python-modules/hiyapyco { };
hjson = callPackage ../development/python-modules/hjson { };