nixpkgs/pkgs/development/python-modules/stm32loader/default.nix

60 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
# build-system
, flit-core
# dependenices
, progress
, pyserial
# optional-dependencies
, intelhex
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "stm32loader";
version = "0.7.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-QTLSEjdJtDH4GCamnKHN5pEjW41rRtAMXxyZZMM5K3w=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
progress
pyserial
];
passthru.optional-dependencies = {
hex = [
intelhex
];
};
nativeCheckInputs = [
pytestCheckHook
] ++ lib.flatten (lib.attrValues passthru.optional-dependencies);
pytestFlagsArray = [
"tests/unit"
];
meta = with lib; {
description = "Flash firmware to STM32 microcontrollers in Python";
homepage = "https://github.com/florisla/stm32loader";
changelog = "https://github.com/florisla/stm32loader/blob/v${version}/CHANGELOG.md";
license = licenses.gpl3;
maintainers = with maintainers; [ emily ];
};
}