mbed-cli: init at 1.8.3 (#53954)
This commit is contained in:
parent
80290b95b8
commit
8b925a8f32
23
pkgs/development/tools/mbed-cli/default.nix
Normal file
23
pkgs/development/tools/mbed-cli/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, python3Packages }:
|
||||
|
||||
with python3Packages;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "mbed-cli";
|
||||
version = "1.8.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "04vn2v0d7y3vmm8cswzvn2z85balgp3095n5flvgf3r60fdlhlmp";
|
||||
};
|
||||
|
||||
doCheck = false; # no tests available in Pypi
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/ARMmbed/mbed-cli;
|
||||
description = "Arm Mbed Command Line Interface";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ rvolosatovs ];
|
||||
};
|
||||
}
|
||||
|
@ -8842,6 +8842,8 @@ in
|
||||
|
||||
mage = callPackage ../development/tools/build-managers/mage { };
|
||||
|
||||
mbed-cli = callPackage ../development/tools/mbed-cli { };
|
||||
|
||||
minify = callPackage ../development/web/minify { };
|
||||
|
||||
minizinc = callPackage ../development/tools/minizinc { };
|
||||
|
Loading…
Reference in New Issue
Block a user