Merge pull request #167638 from r-ryantm/auto-update/python3.10-west

python310Packages.west: 0.12.0 -> 0.13.0
This commit is contained in:
Fabian Affolter 2022-04-07 16:14:58 +02:00 committed by GitHub
commit 7520d985ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,24 @@
{ lib, fetchPypi, buildPythonPackage, isPy3k
, colorama, configobj, packaging, pyyaml, pykwalify
{ lib
, buildPythonPackage
, colorama
, configobj
, fetchPypi
, packaging
, pykwalify
, pythonOlder
, pyyaml
}:
buildPythonPackage rec {
version = "0.12.0";
pname = "west";
version = "0.13.0";
format = "setuptools";
disabled = !isPy3k;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "d7ce0d719fd218fee5983442fe93a33a21a6be6a736915a7ffbe75369714e9ce";
hash = "sha256-jlOmeIM6NfgYykjhgs7KpnAXFMbT/lpbT/bBaJ2CGY4=";
};
propagatedBuildInputs = [
@ -24,12 +32,12 @@ buildPythonPackage rec {
# 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,
@ -47,6 +55,7 @@ buildPythonPackage rec {
For more details, see Multiple Repository Management in the west documentation
(https://docs.zephyrproject.org/latest/guides/west/repo-tool.html).
'';
homepage = "https://github.com/zephyrproject-rtos/west";
license = licenses.asl20;
maintainers = with maintainers; [ siriobalmelli ];
};