49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, pydsdl
|
|
, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nunavut";
|
|
version = "1.6.2";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c6f99eaa65935b2c8a3f004025fb3c0309e11655c391d0fcd318d2a8665ca5c4";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pydsdl
|
|
pyyaml
|
|
];
|
|
|
|
# allow for writable directory for darwin
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
# No tests in pypy package and no git tags yet for release versions, see
|
|
# https://github.com/UAVCAN/nunavut/issues/182
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"nunavut"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A UAVCAN DSDL template engine";
|
|
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/";
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
license = with licenses; [ bsd3 mit ];
|
|
};
|
|
}
|