mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #282689 from fabaff/pybids-fix
python311Packages.pybids: relax formulaic
This commit is contained in:
commit
08db08b523
@ -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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user