2020-07-01 19:34:23 +01:00
|
|
|
|
{ lib, fetchPypi, buildPythonPackage, isPy3k
|
|
|
|
|
, colorama, configobj, packaging, pyyaml, pykwalify
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2020-11-29 14:04:45 +00:00
|
|
|
|
version = "0.8.0";
|
2020-07-01 19:34:23 +01:00
|
|
|
|
pname = "west";
|
|
|
|
|
|
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:45 +00:00
|
|
|
|
sha256 = "672053c3392248846694e5619a7fe6ab4c40f010a8f5be6350821b39f6132a26";
|
2020-07-01 19:34:23 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
colorama
|
|
|
|
|
configobj
|
|
|
|
|
packaging
|
|
|
|
|
pyyaml
|
|
|
|
|
pykwalify
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# pypi package does not include tests (and for good reason):
|
|
|
|
|
# tests run under 'tox' and have west try to git clone repos (not sandboxable)
|
|
|
|
|
doCheck = false;
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
|
"west"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://github.com/zephyrproject-rtos/west";
|
|
|
|
|
description = "Zephyr RTOS meta tool";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
West lets you manage multiple Git repositories under a single directory using a single file,
|
|
|
|
|
called the west manifest file, or manifest for short.
|
|
|
|
|
|
|
|
|
|
The manifest file is named west.yml.
|
|
|
|
|
You use west init to set up this directory,
|
|
|
|
|
then west update to fetch and/or update the repositories
|
|
|
|
|
named in the manifest.
|
|
|
|
|
|
|
|
|
|
By default, west uses upstream Zephyr’s manifest file
|
|
|
|
|
(https://github.com/zephyrproject-rtos/zephyr/blob/master/west.yml),
|
|
|
|
|
but west doesn’t care if the manifest repository is a Zephyr tree or not.
|
|
|
|
|
|
|
|
|
|
For more details, see Multiple Repository Management in the west documentation
|
|
|
|
|
(https://docs.zephyrproject.org/latest/guides/west/repo-tool.html).
|
|
|
|
|
'';
|
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
maintainers = with maintainers; [ siriobalmelli ];
|
|
|
|
|
};
|
|
|
|
|
}
|