nixpkgs/pkgs/development/tools/mbed-cli/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

35 lines
683 B
Nix

{ lib, python3Packages, fetchPypi, git, mercurial }:
with python3Packages;
buildPythonApplication rec {
pname = "mbed-cli";
version = "1.10.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-X+hNVM8fsy0VFTqFr1pPKWRimacBenTcY4y+PBJpvlI=";
};
nativeCheckInputs = [
git
mercurial
pytest
];
checkPhase = ''
export GIT_COMMITTER_NAME=nixbld
export EMAIL=nixbld@localhost
export GIT_COMMITTER_DATE=$SOURCE_DATE_EPOCH
pytest test
'';
meta = with lib; {
homepage = "https://github.com/ARMmbed/mbed-cli";
description = "Arm Mbed Command Line Interface";
license = licenses.asl20;
maintainers = [ ];
};
}