nixpkgs/pkgs/development/python-modules/nunavut/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, importlib-resources
, pydsdl
2021-10-02 20:30:11 +00:00
, pyyaml
}:
2020-06-06 17:16:39 +00:00
buildPythonPackage rec {
pname = "nunavut";
version = "2.0.2";
format = "setuptools";
2021-10-02 20:30:11 +00:00
disabled = pythonOlder "3.6";
2020-06-06 17:16:39 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-Rrt26sEdT3EM1KQHnHQogodj+7QwRJ05f8t7Tn679ZE=";
2020-06-06 17:16:39 +00:00
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "pydsdl ~= 1.16" "pydsdl"
'';
2020-06-06 17:16:39 +00:00
propagatedBuildInputs = [
importlib-resources
2020-06-06 17:16:39 +00:00
pydsdl
2021-10-02 20:30:11 +00:00
pyyaml
2020-06-06 17:16:39 +00:00
];
# 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;
2020-06-06 17:16:39 +00:00
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 ];
};
}