Commit 8d23cded authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.mplhep: 0.3.55 -> 0.3.56

parent 5de8457c
Loading
Loading
Loading
Loading
+19 −12
Original line number Diff line number Diff line
@@ -2,36 +2,42 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  setuptools-scm,

  # build-system
  hatch-vcs,
  hatchling,

  # dependencies
  matplotlib,
  mplhep-data,
  numpy,
  packaging,
  uhi,

  # tests
  hist,
  pytest-mock,
  pytest-mpl,
  pytestCheckHook,
  scipy,
  pytest-mpl,
  pytest-mock,
  uproot,
  hist,
}:

buildPythonPackage rec {
  pname = "mplhep";
  version = "0.3.55";
  version = "0.3.56";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "scikit-hep";
    repo = "mplhep";
    tag = "v${version}";
    hash = "sha256-7YkrrH9Bfn3ctjv+H6TXEDE8yS/wnjO7umuHIXeYTDU=";
    hash = "sha256-sMJpJUEtIqmu7kCgZp43t9XLy/6nkDgKcxC4nFb+1po=";
  };

  build-system = [
    setuptools
    setuptools-scm
    hatch-vcs
    hatchling
  ];

  dependencies = [
@@ -43,12 +49,12 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    hist
    pytest-mock
    pytest-mpl
    pytestCheckHook
    scipy
    pytest-mpl
    pytest-mock
    uproot
    hist
  ];

  disabledTests = [
@@ -62,6 +68,7 @@ buildPythonPackage rec {
  meta = {
    description = "Extended histogram plots on top of matplotlib and HEP compatible styling similar to current collaboration requirements (ROOT)";
    homepage = "https://github.com/scikit-hep/mplhep";
    changelog = "https://github.com/scikit-hep/mplhep/releases/tag/v${version}";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ veprbl ];
  };