Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / histoprint / default.nix
blob94f38aacb674578de2acfaa01ae9fbf94a82c0ce
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , click
5 , numpy
6 , setuptools
7 , setuptools-scm
8 , uhi
9 , pytestCheckHook
12 buildPythonPackage rec {
13   pname = "histoprint";
14   version = "2.4.0";
15   format = "pyproject";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "328f789d186e3bd76882d57b5aad3fa08c7870a856cc83bcdbad9f4aefbda94d";
20   };
22   buildInputs = [
23     setuptools
24     setuptools-scm
25   ];
27   propagatedBuildInputs = [
28     click
29     numpy
30     uhi
31   ];
33   checkInputs = [
34     pytestCheckHook
35   ];
37   meta = with lib; {
38     description = "Pretty print histograms to the console";
39     mainProgram = "histoprint";
40     homepage = "https://github.com/scikit-hep/histoprint";
41     license = licenses.mit;
42     maintainers = with maintainers; [ veprbl ];
43   };