Unverified Commit 042f0348 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.nexusformat: 1.0.6 -> 1.0.7 (#351557)

parents e6d1414a 5780b4f9
Loading
Loading
Loading
Loading
+13 −16
Original line number Diff line number Diff line
@@ -2,31 +2,28 @@
  lib,
  buildPythonPackage,
  fetchPypi,

  # build-system
  setuptools,
  setuptools-scm,

  # tests
  pytestCheckHook,

  # dependencies
  h5py,
  hdf5plugin,
  numpy,
  pytestCheckHook,
  pythonOlder,
  scipy,
  setuptools-scm,
  setuptools,
}:

buildPythonPackage rec {
  pname = "nexusformat";
  version = "1.0.6";
  version = "1.0.7";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-UxU3PA/2r/uamdysbfC0L2JinHgfkXhssHIo2hf3zlA=";
    hash = "sha256-SSS6LTOdqLTHNGpBRO7UELF9qJb/sG8EwrE/azxk7wM=";
  };

  pyproject = true;

  build-system = [
    setuptools
    setuptools-scm
@@ -39,14 +36,14 @@ buildPythonPackage rec {
    scipy
  ];

  pythonImportsCheck = [ "nexusformat.nexus" ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "nexusformat.nexus" ];

  meta = with lib; {
    description = "Python API to open, create, and manipulate NeXus data written in the HDF5 format";
    homepage = "https://github.com/nexpy/nexusformat";
    changelog = "https://github.com/nexpy/nexusformat/releases/tag/${version}";
    changelog = "https://github.com/nexpy/nexusformat/releases/tag/v${version}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ oberth-effect ];
  };