Files
nixpkgs/pkgs/development/python-modules/bidsschematools/default.nix
T
2025-08-16 21:08:30 +00:00

46 lines
798 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
pdm-backend,
acres,
click,
pyyaml,
}:
buildPythonPackage rec {
pname = "bidsschematools";
version = "1.0.14";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "bidsschematools";
inherit version;
hash = "sha256-Kj3vxue6dGdFV2gzYr6SBa3D1s/X+KV/izWR6kMKOKE=";
};
build-system = [
pdm-backend
];
dependencies = [
acres
click
pyyaml
];
pythonImportsCheck = [
"bidsschematools"
];
meta = {
description = "Python tools for working with the BIDS schema";
homepage = "https://github.com/bids-standard/bids-specification/tree/master/tools/schemacode";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ wegank ];
};
}