nixpkgs/pkgs/development/python-modules/nunavut/default.nix
2020-11-05 15:47:00 -08:00

38 lines
972 B
Nix

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