Unverified Commit 14ebbe05 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

python312Packages.particle: 0.25.0 -> 0.25.1 (#341541)

parents f827e93e 83819b55
Loading
Loading
Loading
Loading
+13 −9
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

buildPythonPackage rec {
  pname = "particle";
  version = "0.25.0";
  format = "pyproject";
  version = "0.25.1";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-ji1fo2VV5q8hi2bpe5WFsdT1IIV4XZbAZ3NvCy5X9a0=";
    hash = "sha256-lwZ0jpWnBt/9SUJts5MpgZf+GvgZchxdLG5RV2Sh+wE=";
  };

  postPatch = ''
@@ -32,12 +32,12 @@ buildPythonPackage rec {
      --replace '"--benchmark-disable",' ""
  '';

  nativeBuildInputs = [
  build-system = [
    hatch-vcs
    hatchling
  ];

  propagatedBuildInputs = [
  dependencies = [
    attrs
    deprecated
    hepunits
@@ -51,13 +51,17 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "particle" ];

  disabledTestPaths = [ "tests/particle/test_performance.py" ];
  disabledTestPaths = [
    # Requires pytest-benchmark and pytest-cov which we want to avoid using, as
    # it doesn't really test functionality.
    "tests/particle/test_performance.py"
  ];

  meta = with lib; {
  meta = {
    description = "Package to deal with particles, the PDG particle data table and others";
    homepage = "https://github.com/scikit-hep/particle";
    changelog = "https://github.com/scikit-hep/particle/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ doronbehar ];
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ doronbehar ];
  };
}