Merge pull request #282689 from fabaff/pybids-fix

python311Packages.pybids: relax formulaic
This commit is contained in:
Fabian Affolter 2024-01-22 08:10:52 +01:00 committed by GitHub
commit 08db08b523
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,14 +26,17 @@ buildPythonPackage rec {
hash = "sha256-pahl8wi6Sf8AuVqkvi7H90ViHr+9utb14ZVmKK3rFm4=";
};
pythonRelaxDeps = [
"formulaic"
"sqlalchemy"
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
versioneer
] ++ versioneer.optional-dependencies.toml;
pythonRelaxDeps = [ "sqlalchemy" ];
propagatedBuildInputs = [
bids-validator
click
@ -65,6 +68,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python tools for querying and manipulating BIDS datasets";
homepage = "https://github.com/bids-standard/pybids";
changelog = "https://github.com/bids-standard/pybids/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};