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

37 lines
861 B
Nix
Raw Normal View History

2020-06-06 18:15:27 +01:00
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder }:
buildPythonPackage rec {
pname = "pydsdl";
2021-02-05 20:03:18 +00:00
version = "1.9.4";
2020-06-06 18:15:27 +01:00
disabled = pythonOlder "3.5"; # only python>=3.5 is supported
src = fetchFromGitHub {
owner = "UAVCAN";
repo = pname;
rev = version;
2021-02-05 20:03:18 +00:00
sha256 = "1hmmc4sg6dckbx2ghcjpi74yprapa6lkxxzy0h446mvyngp0kwfv";
2020-06-06 18:15:27 +01:00
};
# allow for writable directory for darwin
preBuild = ''
export HOME=$TMPDIR
'';
2021-02-05 20:03:18 +00:00
# repo doesn't contain tests
doCheck = false;
2020-06-06 18:15:27 +01:00
pythonImportsCheck = [
"pydsdl"
];
meta = with lib; {
description = "A UAVCAN DSDL compiler frontend implemented in Python";
longDescription = ''
It supports all DSDL features defined in the UAVCAN specification.
'';
homepage = "https://uavcan.org";
maintainers = with maintainers; [ wucke13 ];
license = licenses.mit;
};
}