Unverified Commit c238ee5a authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

Merge pull request #284653 from r-ryantm/auto-update/python311Packages.nibabel

python311Packages.nibabel: 5.1.0 -> 5.2.0
parents 3b020181 773d09d9
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -20,14 +20,14 @@

buildPythonPackage rec {
  pname = "nibabel";
  version = "5.1.0";
  format = "pyproject";
  version = "5.2.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-znPKXpVyCechmiI8tx93I1yd8qz00/J/hhujjpSBrFM=";
    hash = "sha256-Pfjxq5gdG9kvQzHVZVKNEmq5cX/b1M/mj0P80cK/P1I=";
  };

  nativeBuildInputs = [
@@ -77,13 +77,9 @@ buildPythonPackage rec {
    export PATH=$out/bin:$PATH
  '';

  disabledTests = [
    # https://github.com/nipy/nibabel/issues/951
    "test_filenames"
  ];

  meta = with lib; {
    homepage = "https://nipy.org/nibabel";
    changelog = "https://github.com/nipy/nibabel/blob/${version}/Changelog";
    description = "Access a multitude of neuroimaging data formats";
    license = licenses.mit;
    maintainers = with maintainers; [ ashgillman ];