ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, h5py
|
|
, nibabel
|
|
, numpy
|
|
, scipy
|
|
, setuptools-scm
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nitransforms";
|
|
version = "23.0.1";
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Lty4aPzSlwRJSqCXeIVICF+gudYqto1OS4cVZyrB2nY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
buildInputs = [ setuptools-scm toml ];
|
|
propagatedBuildInputs = [ h5py nibabel numpy scipy ];
|
|
|
|
pythonRelaxDeps = [ "scipy" ];
|
|
|
|
doCheck = false;
|
|
# relies on data repo (https://github.com/nipreps-data/nitransforms-tests);
|
|
# probably too heavy
|
|
pythonImportsCheck = [
|
|
"nitransforms"
|
|
"nitransforms.base"
|
|
"nitransforms.io"
|
|
"nitransforms.io.base"
|
|
"nitransforms.linear"
|
|
"nitransforms.manip"
|
|
"nitransforms.nonlinear"
|
|
"nitransforms.patched"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|