python312Packages.bidsschematools: init at 0.11.3

This commit is contained in:
Weijia Wang
2024-11-06 02:35:07 +01:00
parent a633b5fb12
commit 833eebc021
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchPypi,
setuptools,
click,
pyyaml,
jsonschema,
}:
buildPythonPackage rec {
pname = "bidsschematools";
version = "0.11.3";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "bidsschematools";
inherit version;
hash = "sha256-GvR3pOXXmdpjH2xdL+trhLW6ZdsTpEWUdNUlVQ4gFXo=";
};
build-system = [
setuptools
];
dependencies = [
click
pyyaml
jsonschema
];
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 ];
};
}
+2
View File
@@ -1601,6 +1601,8 @@ self: super: with self; {
bids-validator = callPackage ../development/python-modules/bids-validator { };
bidsschematools = callPackage ../development/python-modules/bidsschematools { };
biliass = callPackage ../development/python-modules/biliass { };
bilibili-api-python = callPackage ../development/python-modules/bilibili-api-python { };