Skip to content

Commit

Permalink
adafruit-nrfutil: remove nose and modernize
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrox0 committed Jul 14, 2024
1 parent 1bbd5af commit 91edc51
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pkgs/by-name/ad/adafruit-nrfutil/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,16 @@ python3Packages.buildPythonApplication rec {
})
];

nativeBuildInputs = with python3Packages; [
setuptools
];
build-system = [ python3Packages.setuptools ];

propagatedBuildInputs = with python3Packages; [
dependencies = with python3Packages; [
click
ecdsa
pyserial
];

nativeCheckInputs = with python3Packages; [
behave
nose
pytestCheckHook
];

Expand All @@ -56,11 +53,12 @@ python3Packages.buildPythonApplication rec {
"nordicsemi"
];

meta = with lib; {
meta = {
homepage = "https://github.com/adafruit/Adafruit_nRF52_nrfutil";
description = "Modified version of Nordic's nrfutil 0.5.x for use with the Adafruit Feather nRF52";
mainProgram = "adafruit-nrfutil";
license = licenses.bsd3;
maintainers = with maintainers; [ stargate01 ];
# https://github.com/adafruit/Adafruit_nRF52_nrfutil/issues/41
license = lib.licenses.unfreeRedistributable;
maintainers = with lib.maintainers; [ stargate01 ];
};
}

0 comments on commit 91edc51

Please sign in to comment.