python3Packages.nunavut: init at 0.3.0

This commit is contained in:
wucke13 2020-06-06 19:16:39 +02:00
parent 3f50371a61
commit 1553a46f28
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib, buildPythonPackage, pythonOlder, fetchPypi, pydsdl }:
buildPythonPackage rec {
pname = "nunavut";
version = "0.3.0";
disabled = pythonOlder "3.5"; # only python>=3.5 is supported
src = fetchPypi {
inherit pname version;
sha256 = "1ycnxrw2qgm7kdapsnhz80jsqkghgvb5giqwapn0m30rplwc3s36";
};
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 ];
};
}

View file

@ -1002,6 +1002,8 @@ in {
nvchecker = callPackage ../development/python-modules/nvchecker { };
numericalunits = callPackage ../development/python-modules/numericalunits { };
nunavut = callPackage ../development/python-modules/nunavut { };
oath = callPackage ../development/python-modules/oath { };