Unverified Commit 8732e1e1 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.nitransforms: 24.1.2 -> 25.0.0 (#427636)

parents 070e7cc1 83ab2934
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -7,25 +7,25 @@
  nibabel,
  numpy,
  scipy,
  setuptools,
  setuptools-scm,
  toml,
}:

buildPythonPackage rec {
  pname = "nitransforms";
  version = "24.1.2";
  version = "25.0.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.10";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-JKlKM9bd3pTTBp/xVj9Ywd/+Ok7lxo05AF01eeOBeoE=";
    hash = "sha256-bGyrFyB8pjE3zLymQTWXdPAUxDopFQdJ00aQszlOp5g=";
  };

  build-system = [
    setuptools
    setuptools-scm
    toml
  ];

  dependencies = [
@@ -49,12 +49,12 @@ buildPythonPackage rec {
    "nitransforms.patched"
  ];

  meta = with lib; {
  meta = {
    homepage = "https://nitransforms.readthedocs.io";
    description = "Geometric transformations for images and surfaces";
    mainProgram = "nb-transform";
    changelog = "https://github.com/nipy/nitransforms/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ bcdarwin ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ bcdarwin ];
  };
}