1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
importlib-resources,
|
|
pydsdl,
|
|
pyyaml,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "nunavut";
|
|
version = "2.3.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-23C3biUUs10Po5qzn3EFaq4+HeWCXIC6WzxOKy59VgM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "pydsdl ~= 1.16" "pydsdl"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
importlib-resources
|
|
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 = {
|
|
description = "UAVCAN DSDL template engine";
|
|
mainProgram = "nnvg";
|
|
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/";
|
|
changelog = "https://github.com/OpenCyphal/nunavut/releases/tag/${version}";
|
|
maintainers = with lib.maintainers; [ wucke13 ];
|
|
license = with lib.licenses; [
|
|
bsd3
|
|
mit
|
|
];
|
|
};
|
|
}
|