python310Packages.histoprint: init at 2.4.0
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user