biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / west / default.nix
blobe644d156edb05846702f0a90dbf7fbb781c52c7d
2   lib,
3   buildPythonPackage,
4   colorama,
5   configobj,
6   fetchPypi,
7   packaging,
8   pykwalify,
9   pythonOlder,
10   pyyaml,
13 buildPythonPackage rec {
14   pname = "west";
15   version = "1.2.0";
16   format = "setuptools";
18   disabled = pythonOlder "3.8";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-tB5RrJA5OUT5wB974nAA1LMpYVt+0HT7DvaTtGRoEpc=";
23   };
25   propagatedBuildInputs = [
26     colorama
27     configobj
28     packaging
29     pyyaml
30     pykwalify
31   ];
33   # pypi package does not include tests (and for good reason):
34   # tests run under 'tox' and have west try to git clone repos (not sandboxable)
35   doCheck = false;
37   pythonImportsCheck = [ "west" ];
39   meta = with lib; {
40     description = "Zephyr RTOS meta tool";
41     mainProgram = "west";
42     longDescription = ''
43       West lets you manage multiple Git repositories under a single directory using a single file,
44       called the west manifest file, or manifest for short.
46       The manifest file is named west.yml.
47       You use west init to set up this directory,
48       then west update to fetch and/or update the repositories
49       named in the manifest.
51       By default, west uses upstream Zephyr’s manifest file
52       (https://github.com/zephyrproject-rtos/zephyr/blob/master/west.yml),
53       but west doesn’t care if the manifest repository is a Zephyr tree or not.
55       For more details, see Multiple Repository Management in the west documentation
56       (https://docs.zephyrproject.org/latest/guides/west/repo-tool.html).
57     '';
58     homepage = "https://github.com/zephyrproject-rtos/west";
59     changelog = "https://github.com/zephyrproject-rtos/west/releases/tag/v${version}";
60     license = licenses.asl20;
61     maintainers = with maintainers; [ siriobalmelli ];
62   };