python3Packages.dipy: remove use of with lib

This commit is contained in:
Guilhem Saurel
2025-09-22 18:55:50 +02:00
parent a81a228bd0
commit 62687c7982

View File

@@ -69,11 +69,11 @@ buildPythonPackage rec {
"dipy.nn" "dipy.nn"
]; ];
meta = with lib; { meta = {
homepage = "https://dipy.org/"; homepage = "https://dipy.org/";
description = "Diffusion imaging toolkit for Python"; description = "Diffusion imaging toolkit for Python";
changelog = "https://github.com/dipy/dipy/blob/${version}/Changelog"; changelog = "https://github.com/dipy/dipy/blob/${version}/Changelog";
license = licenses.bsd3; license = lib.licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ]; maintainers = with lib.maintainers; [ bcdarwin ];
}; };
} }