2021-02-13 14:23:35 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
2022-04-27 09:35:20 +00:00
|
|
|
, importlib-resources
|
2021-02-13 14:23:35 +00:00
|
|
|
, pydsdl
|
2021-10-04 12:37:57 +00:00
|
|
|
, pyyaml
|
2021-02-13 14:23:35 +00:00
|
|
|
}:
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "nunavut";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "2.3.1";
|
2022-09-30 11:47:45 +00:00
|
|
|
format = "setuptools";
|
2021-10-04 12:37:57 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-11-16 04:20:00 +00:00
|
|
|
hash = "sha256-23C3biUUs10Po5qzn3EFaq4+HeWCXIC6WzxOKy59VgM=";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.cfg \
|
|
|
|
--replace "pydsdl ~= 1.16" "pydsdl"
|
|
|
|
'';
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [
|
2022-04-27 09:35:20 +00:00
|
|
|
importlib-resources
|
2020-07-18 16:06:22 +00:00
|
|
|
pydsdl
|
2021-10-04 12:37:57 +00:00
|
|
|
pyyaml
|
2020-07-18 16:06:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# allow for writable directory for darwin
|
|
|
|
preBuild = ''
|
|
|
|
export HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
# No tests in pypy package and no git tags yet for release versions, see
|
|
|
|
# https://github.com/UAVCAN/nunavut/issues/182
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"nunavut"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A UAVCAN DSDL template engine";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "nnvg";
|
2020-07-18 16:06:22 +00:00
|
|
|
longDescription = ''
|
|
|
|
It exposes a pydsdl abstract syntax tree to Jinja2 templates allowing
|
|
|
|
authors to generate code, schemas, metadata, documentation, etc.
|
|
|
|
'';
|
|
|
|
homepage = "https://nunavut.readthedocs.io/";
|
2023-07-15 17:15:38 +00:00
|
|
|
changelog = "https://github.com/OpenCyphal/nunavut/releases/tag/${version}";
|
2020-07-18 16:06:22 +00:00
|
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
|
|
license = with licenses; [ bsd3 mit ];
|
|
|
|
};
|
|
|
|
}
|