46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
pythonOlder,
|
||
|
setuptools-scm,
|
||
|
nipreps-versions,
|
||
|
pybids,
|
||
|
requests,
|
||
|
tqdm,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "templateflow";
|
||
|
version = "24.2.2";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "templateflow";
|
||
|
repo = "python-client";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-COS767n2aC65m6AJihZb4NhJ4ZK9YkTAZR7Hcnc/LMs=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ setuptools-scm ];
|
||
|
propagatedBuildInputs = [
|
||
|
nipreps-versions
|
||
|
pybids
|
||
|
requests
|
||
|
tqdm
|
||
|
];
|
||
|
|
||
|
doCheck = false; # most tests try to download data
|
||
|
#pythonImportsCheck = [ "templateflow" ]; # touches $HOME/.cache, hence needs https://github.com/NixOS/nixpkgs/pull/120300
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://templateflow.org/python-client";
|
||
|
description = "Python API to query TemplateFlow via pyBIDS";
|
||
|
changelog = "https://github.com/templateflow/python-client/releases/tag/${version}";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ bcdarwin ];
|
||
|
};
|
||
|
}
|