38 lines
972 B
Nix
38 lines
972 B
Nix
{ lib, buildPythonPackage, pythonOlder, fetchPypi, pydsdl }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nunavut";
|
|
version = "0.6.2";
|
|
disabled = pythonOlder "3.5"; # only python>=3.5 is supported
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "48b6802722d78542ca5d7bbc0d6aa9b0a31e1be0070c47b41527f227eb6a1443";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pydsdl
|
|
];
|
|
|
|
# allow for writable directory for darwin
|
|
preBuild = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
# repo doesn't contain tests, ensure imports aren't broken
|
|
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 ];
|
|
};
|
|
}
|