blob: 0791320af9ac85387978e40373d454da3af6e9b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
hatchling,
hatch-vcs,
click,
numpy,
uhi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "histoprint";
version = "2.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "scikit-hep";
repo = "histoprint";
tag = "v${version}";
hash = "sha256-qMg0Ct39BjdcyWB3KxG74rVqVW4I0DGZ5GS7D3uYq3w=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [
click
numpy
uhi
];
checkInputs = [ pytestCheckHook ];
meta = {
description = "Pretty print histograms to the console";
mainProgram = "histoprint";
homepage = "https://github.com/scikit-hep/histoprint";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ veprbl ];
};
}
|